Selenium-Webdriver in Ruby with minitest. How to run specific test case inside a file -


im transitioning rspec minitest test later comparing speed , paralellism, maintenance, etc.

in rspec, can run test cases command:

rspec path/to/test/suite.rb -e 'should test case' 

'should test case' line inside suite.rb file:

it 'should test case'     ... end 

but can't seem find way in minitest.

not can run individual tests, can use regex expressions

$ ruby path/to/test/suite.rb --name /should test case/ 

Comments

Popular posts from this blog

ruby - Trying to change last to "x"s to 23 -

jquery - Clone last and append item to closest class -

c - Unrecognised emulation mode: elf_i386 on MinGW32 -