diff options
author | Xavier Noria <fxn@hashref.com> | 2014-10-25 13:58:38 +0200 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2014-10-25 14:06:33 +0200 |
commit | 8d7cf75684d5e76ef635f92125a51cb4c1c0fd3b (patch) | |
tree | c4bfcb63d28c26837ad8b607de9abe33de7b3de9 /actionpack/test/fixtures | |
parent | ae07806858072cd66611c165d1eed2a113e639e5 (diff) | |
download | rails-8d7cf75684d5e76ef635f92125a51cb4c1c0fd3b.tar.gz rails-8d7cf75684d5e76ef635f92125a51cb4c1c0fd3b.tar.bz2 rails-8d7cf75684d5e76ef635f92125a51cb4c1c0fd3b.zip |
give a better error message for misspelled helpers
See comment in this patch for the rationale.
References #16468
Diffstat (limited to 'actionpack/test/fixtures')
-rw-r--r-- | actionpack/test/fixtures/helpers_typo/admin/users_helper.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/actionpack/test/fixtures/helpers_typo/admin/users_helper.rb b/actionpack/test/fixtures/helpers_typo/admin/users_helper.rb new file mode 100644 index 0000000000..7d2326e04d --- /dev/null +++ b/actionpack/test/fixtures/helpers_typo/admin/users_helper.rb @@ -0,0 +1,5 @@ +module Admin + module UsersHelpeR + end +end + |