Class: ActionView::FixtureResolver

Inherits:
PathResolver show all
Defined in:
actionview/lib/action_view/testing/resolvers.rb

Overview

Use FixtureResolver in your tests to simulate the presence of files on the file system. This is used internally by Rails’ own test suite, and is useful for testing extensions that have no way of knowing what the file system will look like at runtime.

Constant Summary

Constants inherited from PathResolver

PathResolver::DEFAULT_PATTERN, PathResolver::EXTENSIONS

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Resolver

#clear_cache, #find_all

Constructor Details

#initialize(hash = {}, pattern = nil) ⇒ FixtureResolver

Returns a new instance of FixtureResolver.



11
12
13
14
# File 'actionview/lib/action_view/testing/resolvers.rb', line 11

def initialize(hash = {}, pattern=nil)
  super(pattern)
  @hash = hash
end

Instance Attribute Details

#hashObject (readonly)

Returns the value of attribute hash



9
10
11
# File 'actionview/lib/action_view/testing/resolvers.rb', line 9

def hash
  @hash
end

Instance Method Details

#to_sObject



16
17
18
# File 'actionview/lib/action_view/testing/resolvers.rb', line 16

def to_s
  @hash.keys.join(', ')
end