method

find_candidate_template_paths

find_candidate_template_paths(path)
private

No documentation available.

# File actionview/lib/action_view/testing/resolvers.rb, line 26
      def find_candidate_template_paths(path)
        @hash.keys.select do |fixture|
          fixture.start_with?(path.virtual)
        end.map do |fixture|
          "/#{fixture}"
        end
      end