aboutsummaryrefslogblamecommitdiffstats
path: root/actionpack/test/lib/fixture_template.rb
blob: eda76ddfd01c69361956714bd25becc44485c6af (plain) (tree)
1
2
3
4
5
6
7
8
9
                          
                                      

                     

                             

                  
 
         
 
                                  


                                                                                     
         
 

                                                                     


                                                                        
         
                                              
       
 

     
module ActionView #:nodoc:
  class FixtureResolver < PathResolver
    attr_reader :hash

    def initialize(hash = {})
      super()
      @hash = hash
    end

  private

    def query(partial, path, exts)
      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)
        templates << Template.new(source, path, handler,
          :partial => partial, :virtual_path => path, :format => format)
      end
      templates.sort_by {|t| -t.formats.size }
    end

  end
end