aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/fixtures/helpers/helpery_test_helper.rb
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@gmail.com>2010-08-26 16:03:10 -0300
committerJosé Valim <jose.valim@gmail.com>2010-08-26 16:07:54 -0300
commit66ef92272c5d6519b425e73e500bbae1a75b348e (patch)
tree8946ded090a491037bf6fc4150708baf5b48154d /actionpack/test/fixtures/helpers/helpery_test_helper.rb
parent84cab320bc1faaddc142cbbb38713d3f29a8b07d (diff)
downloadrails-66ef92272c5d6519b425e73e500bbae1a75b348e.tar.gz
rails-66ef92272c5d6519b425e73e500bbae1a75b348e.tar.bz2
rails-66ef92272c5d6519b425e73e500bbae1a75b348e.zip
Add clear_helpers as a way to clean up all helpers added to this controller, maintaing just the helper with the same name as the controller.
Diffstat (limited to 'actionpack/test/fixtures/helpers/helpery_test_helper.rb')
-rw-r--r--actionpack/test/fixtures/helpers/helpery_test_helper.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/actionpack/test/fixtures/helpers/helpery_test_helper.rb b/actionpack/test/fixtures/helpers/helpery_test_helper.rb
new file mode 100644
index 0000000000..a4f2951efa
--- /dev/null
+++ b/actionpack/test/fixtures/helpers/helpery_test_helper.rb
@@ -0,0 +1,5 @@
+module HelperyTestHelper
+ def helpery_test
+ "Default"
+ end
+end