class ActionView::FixtureResolver
system will look like at runtime.
useful for testing extensions that have no way of knowing what the file
file system. This is used internally by Rails’ own test suite, and is
Use FixtureResolver in your tests to simulate the presence of files on the
:nodoc:
def data
def data @hash end
def initialize(hash = {})
def initialize(hash = {}) super("") @hash = hash @path = "" end
def source_for_template(template)
def source_for_template(template) @hash[template.from(1)] end
def template_glob(glob)
def template_glob(glob) @hash.keys.filter_map do |path| "/#{path}" if File.fnmatch(glob, path) end end
def to_s
def to_s @hash.keys.join(", ") end