aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/lib
diff options
context:
space:
mode:
authorYehuda Katz + Carl Lerche <ykatz+clerche@engineyard.com>2009-09-03 11:40:03 -0700
committerYehuda Katz + Carl Lerche <ykatz+clerche@engineyard.com>2009-09-03 11:40:03 -0700
commitf61dc0ef6511e585f0b6a8d02b00c17b2388b04a (patch)
tree7a666be544fc6e79af242cec1b4dd5d4a5c5e274 /actionpack/test/lib
parentf3fc5c4b5f36db37edc8ab553a35b06b48226c0a (diff)
downloadrails-f61dc0ef6511e585f0b6a8d02b00c17b2388b04a.tar.gz
rails-f61dc0ef6511e585f0b6a8d02b00c17b2388b04a.tar.bz2
rails-f61dc0ef6511e585f0b6a8d02b00c17b2388b04a.zip
Remove a useless method in the fixture template class
Diffstat (limited to 'actionpack/test/lib')
-rw-r--r--actionpack/test/lib/fixture_template.rb4
1 files changed, 0 insertions, 4 deletions
diff --git a/actionpack/test/lib/fixture_template.rb b/actionpack/test/lib/fixture_template.rb
index 0a365b3a7e..6b9e7c5270 100644
--- a/actionpack/test/lib/fixture_template.rb
+++ b/actionpack/test/lib/fixture_template.rb
@@ -7,10 +7,6 @@ module ActionView #:nodoc:
private
- def or_extensions(array)
- "(?:" << array.map {|e| e && Regexp.escape(".#{e}")}.join("|") << ")"
- end
-
def query(path, exts)
query = Regexp.escape(path)
exts.each do |ext|