mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
f851352318
With config.generators becomes a way to configure generators for current instance only. For example: module Blog class Engine < Rails::Engine config.generators do |g| g.orm :active_record end config.app_generators do |g| g.test_framework :rspec end end end such definition sets :active_record as orm for engine and :rspec as test_framework for application. The values set with app_generators can be overwritten in application using config.generators as you would normally do: module MyApp class Application < Rails::Application config.generators do |g| g.test_framework :test_unit end end end
15 lines
363 B
Ruby
15 lines
363 B
Ruby
module Rails
|
|
class TestUnitRailtie < Rails::Railtie
|
|
config.app_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
|