aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/fixtures
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2005-11-08 08:23:13 +0000
committerJeremy Kemper <jeremy@bitsweat.net>2005-11-08 08:23:13 +0000
commit85baf07be82b7e4313c6eeeebdd365a6f45fd405 (patch)
tree808dd03a391234ec0ab90dec1df9537c07b7f0b9 /actionpack/test/fixtures
parenta90fdec0311a73ee093344650550253ecc6d28d7 (diff)
downloadrails-85baf07be82b7e4313c6eeeebdd365a6f45fd405.tar.gz
rails-85baf07be82b7e4313c6eeeebdd365a6f45fd405.tar.bz2
rails-85baf07be82b7e4313c6eeeebdd365a6f45fd405.zip
Controllers with acronyms in their names (e.g. PDFController) require the correct default helper (PDFHelper in file pdf_helper.rb). Closes #2262. Do not raise an exception when default helper is missing; log a debug message instead. It's nice to delete empty helpers.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2938 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/test/fixtures')
-rw-r--r--actionpack/test/fixtures/helpers/fun/pdf_helper.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/actionpack/test/fixtures/helpers/fun/pdf_helper.rb b/actionpack/test/fixtures/helpers/fun/pdf_helper.rb
new file mode 100644
index 0000000000..1890f6c9ec
--- /dev/null
+++ b/actionpack/test/fixtures/helpers/fun/pdf_helper.rb
@@ -0,0 +1,3 @@
+module Fun::PDFHelper
+ def foobar() 'baz' end
+end