diff options
author | Guillermo Iguaran <guilleiguaran@gmail.com> | 2013-08-29 22:57:37 -0700 |
---|---|---|
committer | Guillermo Iguaran <guilleiguaran@gmail.com> | 2013-08-29 22:57:37 -0700 |
commit | f90aa722fad2b33a95c85319070891d1eab352f5 (patch) | |
tree | 29d81490801f42f730189e954567209ceb607cbc | |
parent | 1f57a1503d31f47869ab734cfebd367fef586186 (diff) | |
parent | c2df74938e0dcd03b297efe2d3db4299ec33ceeb (diff) | |
download | rails-f90aa722fad2b33a95c85319070891d1eab352f5.tar.gz rails-f90aa722fad2b33a95c85319070891d1eab352f5.tar.bz2 rails-f90aa722fad2b33a95c85319070891d1eab352f5.zip |
Merge pull request #12078 from prathamesh-sonpatki/typo
Fix typo in generators test helpr -> helper [ci skip]
-rw-r--r-- | railties/test/generators/namespaced_generators_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/test/generators/namespaced_generators_test.rb b/railties/test/generators/namespaced_generators_test.rb index a4d8b3d1b0..e17925ff65 100644 --- a/railties/test/generators/namespaced_generators_test.rb +++ b/railties/test/generators/namespaced_generators_test.rb @@ -44,7 +44,7 @@ class NamespacedControllerGeneratorTest < NamespacedGeneratorTestCase end end - def test_helpr_is_also_namespaced + def test_helper_is_also_namespaced run_generator assert_file "app/helpers/test_app/account_helper.rb", /module TestApp/, / module AccountHelper/ assert_file "test/helpers/test_app/account_helper_test.rb", /module TestApp/, / class AccountHelperTest/ |