9 lines
169 B
Ruby
9 lines
169 B
Ruby
if Rails.env.test?
|
|
Locomotive::Application.configure do
|
|
config.generators do |g|
|
|
g.integration_tool :rspec
|
|
g.test_framework :rspec
|
|
end
|
|
end
|
|
end
|