Merge pull request #2390 from arunagw/test_for_environment_file

Test added to check development.rb, test.rb and production.rb content
This commit is contained in:
Santiago Pastorino 2011-08-24 07:22:43 -07:00
commit 52207ecc81
1 changed files with 9 additions and 0 deletions

View File

@ -314,6 +314,15 @@ class AppGeneratorTest < Rails::Generators::TestCase
end
end
def test_generated_environments_file_for_sanitizer
run_generator [destination_root, "--skip-active-record"]
["config/environments/development.rb", "config/environments/test.rb"].each do |env_file|
assert_file env_file do |file|
assert_no_match(/config.active_record.mass_assignment_sanitizer = :strict/, file)
end
end
end
protected
def action(*args, &block)