Run :all => :tests runs only the first file
Closed this issue · 3 comments
heikki commented
Configuration:
infinity_test do
skip_bundler!
use :app_framework => :rails
heuristics do
add("^app/controllers/application_controller.rb") do |file|
run :all => :tests, :in_dir => :functional
end
end
end
Running with --verbose shows all the correct files (when application_controller is modified) but test_unit_loader.rb is missing from the beginning of the list. Maybe that is the reason?
tomas-stefano commented
Yep you right.
The infinity_test don't run with the test_loader.
I'll see that for you.
Thanks =]
tomas-stefano commented
Hi again, Fix issue in this commit c9bdbd0
If you want use with this fix, I bumped a patch version with this fix.
gem install infinity_test #ftw =]
Now in 1.0.1 version
Thanks for the info m8!
heikki commented
Awesome, thanks! :)
Tested and it works now.