diff options
author | Yves Senn <yves.senn@gmail.com> | 2015-02-09 10:41:37 +0100 |
---|---|---|
committer | Yves Senn <yves.senn@gmail.com> | 2015-02-09 10:41:37 +0100 |
commit | 8ba75488773c2d7e4cdf267fb8d4553e8363910c (patch) | |
tree | 77881acace9d42d6f99ffcdfc5a3ae5d06d0f2f4 /railties/test | |
parent | c6a36ef9af6cf6a16497df32130765637de9a049 (diff) | |
download | rails-8ba75488773c2d7e4cdf267fb8d4553e8363910c.tar.gz rails-8ba75488773c2d7e4cdf267fb8d4553e8363910c.tar.bz2 rails-8ba75488773c2d7e4cdf267fb8d4553e8363910c.zip |
tests, reset global to previous value.
The default of the global might change. It's better to reset it to
what it was than a hardcoded value.
Diffstat (limited to 'railties/test')
-rw-r--r-- | railties/test/generators/named_base_test.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/railties/test/generators/named_base_test.rb b/railties/test/generators/named_base_test.rb index 3ec71065ff..18a26fde05 100644 --- a/railties/test/generators/named_base_test.rb +++ b/railties/test/generators/named_base_test.rb @@ -49,11 +49,13 @@ class NamedBaseTest < Rails::Generators::TestCase end def test_named_generator_attributes_without_pluralized + original_pluralize_table_names = ActiveRecord::Base.pluralize_table_names ActiveRecord::Base.pluralize_table_names = false + g = generator ['admin/foo'] assert_name g, 'admin_foo', :table_name ensure - ActiveRecord::Base.pluralize_table_names = true + ActiveRecord::Base.pluralize_table_names = original_pluralize_table_names end def test_scaffold_plural_names |