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
Post a Comment