2014-05-28 10:31:04 -04:00
|
|
|
if defined?(Rake.application) && Rake.application.top_level_tasks.grep(/^(default$|test(:|$))/).any?
|
2013-04-17 18:10:17 -04:00
|
|
|
ENV['RAILS_ENV'] ||= 'test'
|
|
|
|
end
|
|
|
|
|
2010-01-27 20:39:11 -05:00
|
|
|
module Rails
|
|
|
|
class TestUnitRailtie < Rails::Railtie
|
2010-09-29 11:41:30 -04:00
|
|
|
config.app_generators do |c|
|
2012-10-14 06:03:39 -04:00
|
|
|
c.test_framework :test_unit, fixture: true,
|
|
|
|
fixture_replacement: nil
|
2010-01-28 13:17:41 -05:00
|
|
|
|
|
|
|
c.integration_tool :test_unit
|
|
|
|
end
|
2010-01-27 20:39:11 -05:00
|
|
|
|
|
|
|
rake_tasks do
|
2010-01-29 11:43:37 -05:00
|
|
|
load "rails/test_unit/testing.rake"
|
|
|
|
end
|
2010-01-27 20:39:11 -05:00
|
|
|
end
|
2010-02-11 12:01:33 -05:00
|
|
|
end
|