diff options
author | José Valim <jose.valim@gmail.com> | 2010-08-26 18:17:50 -0300 |
---|---|---|
committer | José Valim <jose.valim@gmail.com> | 2010-08-26 18:20:22 -0300 |
commit | 625f7b5a5b12df3e7684b1be29c71c1f79a7c7b7 (patch) | |
tree | 3ac26d40469e91bb11e6a20d2f48854e215e92ed /actionpack/test/fixtures | |
parent | 737abf25bbafbf501dee4144abf13657217da0d2 (diff) | |
download | rails-625f7b5a5b12df3e7684b1be29c71c1f79a7c7b7.tar.gz rails-625f7b5a5b12df3e7684b1be29c71c1f79a7c7b7.tar.bz2 rails-625f7b5a5b12df3e7684b1be29c71c1f79a7c7b7.zip |
Be sure to call helper :all just on direct children. (Tests by Jesse Storimer)
Diffstat (limited to 'actionpack/test/fixtures')
-rw-r--r-- | actionpack/test/fixtures/helpers/just_me_helper.rb | 3 | ||||
-rw-r--r-- | actionpack/test/fixtures/helpers/me_too_helper.rb | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/actionpack/test/fixtures/helpers/just_me_helper.rb b/actionpack/test/fixtures/helpers/just_me_helper.rb new file mode 100644 index 0000000000..b140a7b9b4 --- /dev/null +++ b/actionpack/test/fixtures/helpers/just_me_helper.rb @@ -0,0 +1,3 @@ +module JustMeHelper + def me() "mine!" end +end
\ No newline at end of file diff --git a/actionpack/test/fixtures/helpers/me_too_helper.rb b/actionpack/test/fixtures/helpers/me_too_helper.rb new file mode 100644 index 0000000000..ce56042143 --- /dev/null +++ b/actionpack/test/fixtures/helpers/me_too_helper.rb @@ -0,0 +1,3 @@ +module MeTooHelper + def me() "me too!" end +end
\ No newline at end of file |