1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/railties/lib/rails/test_unit
Jeremy Kemper 4f629ed4bb Restore rake TEST=test/unit/foo_test.rb support.
Add your own test tasks as dependencies on the `test:run` task instead of `test` itself.

  namespace :test do
    task run: 'test:acceptance'

    Rails::SubTestTask.new acceptance: 'test:prepare' do |t|
      t.libs << 'test'
      t.pattern = 'test/acceptance/**/*_test.rb'
    end
  end
2011-12-21 10:11:57 -07:00
..
railtie.rb Added config.app_generators to allow configuring application's generators from railties. 2010-09-30 09:47:06 +02:00
testing.rake Restore rake TEST=test/unit/foo_test.rb support. 2011-12-21 10:11:57 -07:00