tomas-stefano/infinity_test

Run :all => :tests runs only the first file

Closed this issue · 3 comments

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?

Yep you right.

The infinity_test don't run with the test_loader.

I'll see that for you.

Thanks =]

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!

Awesome, thanks! :)

Tested and it works now.