mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
17 lines
388 B
Ruby
17 lines
388 B
Ruby
module Rails
|
|
class TestUnitRailtie < Rails::Railtie
|
|
railtie_name :test_unit
|
|
|
|
config.generators do |c|
|
|
c.test_framework :test_unit, :fixture => true,
|
|
:fixture_replacement => nil
|
|
|
|
c.integration_tool :test_unit
|
|
c.performance_tool :test_unit
|
|
end
|
|
|
|
rake_tasks do
|
|
load "rails/test_unit/testing.rake"
|
|
end
|
|
end
|
|
end
|