Class: ActionView::FixtureResolver
- Inherits:
-
PathResolver
- Object
- Resolver
- PathResolver
- ActionView::FixtureResolver
- Defined in:
- 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
-
#hash ⇒ Object
readonly
Returns the value of attribute hash.
Instance Method Summary collapse
-
#initialize(hash = {}, pattern = nil) ⇒ FixtureResolver
constructor
A new instance of FixtureResolver.
- #to_s ⇒ Object
Methods inherited from Resolver
#clear_cache, #find_all, #find_all_anywhere
Constructor Details
#initialize(hash = {}, pattern = nil) ⇒ FixtureResolver
Returns a new instance of FixtureResolver.
11 12 13 14 |
# File 'lib/action_view/testing/resolvers.rb', line 11 def initialize(hash = {}, pattern=nil) super(pattern) @hash = hash end |
Instance Attribute Details
#hash ⇒ Object (readonly)
Returns the value of attribute hash.
9 10 11 |
# File 'lib/action_view/testing/resolvers.rb', line 9 def hash @hash end |
Instance Method Details
#to_s ⇒ Object
16 17 18 |
# File 'lib/action_view/testing/resolvers.rb', line 16 def to_s @hash.keys.join(', ') end |