I can run all tests in a single file with:
rake test TEST=path/to/test_file.rb
However, if I want to run just one test in that file, how wo
I'm looking for similar functionality to: rspec path/to/test_file.rb -l 25
I'm looking for similar functionality to:
rspec path/to/test_file.rb -l 25
There is a gem that does exactly that: minitest-line.
minitest-line
gem install minitest-line ruby test/my_file -l 5
from https://github.com/judofyr/minitest-line#minitest-line