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

Capture and play voice with Asterisk ARI -

c++ - Can not find the "fiostream.h" file -

java - Why database contraints in HSQLDB are only checked during a commit when using transactions in Hibernate? -