aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/lib/fixture_template.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/test/lib/fixture_template.rb')
-rw-r--r--actionpack/test/lib/fixture_template.rb29
1 files changed, 0 insertions, 29 deletions
diff --git a/actionpack/test/lib/fixture_template.rb b/actionpack/test/lib/fixture_template.rb
deleted file mode 100644
index b49ccd39ca..0000000000
--- a/actionpack/test/lib/fixture_template.rb
+++ /dev/null
@@ -1,29 +0,0 @@
-module ActionView #:nodoc:
- class FixtureResolver < PathResolver
- attr_reader :hash
-
- def initialize(hash = {})
- super()
- @hash = hash
- end
-
- private
-
- def query(path, exts, formats)
- query = Regexp.escape(path)
- exts.each do |ext|
- query << '(' << ext.map {|e| e && Regexp.escape(".#{e}") }.join('|') << '|)'
- end
-
- templates = []
- @hash.select { |k,v| k =~ /^#{query}$/ }.each do |path, source|
- handler, format = extract_handler_and_format(path, formats)
- templates << Template.new(source, path, handler,
- :virtual_path => path, :format => format)
- end
-
- templates.sort_by {|t| -t.identifier.match(/^#{query}$/).captures.reject(&:blank?).size }
- end
-
- end
-end \ No newline at end of file