Class: ActionView::FixtureResolver
- Inherits:
-
PathResolver
- Object
- Resolver
- PathResolver
- ActionView::FixtureResolver
- Defined in:
- actionpack/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
Constructor Details
permalink #initialize(hash = {}, pattern = nil) ⇒ FixtureResolver
Returns a new instance of FixtureResolver.
11 12 13 14 |
# File 'actionpack/lib/action_view/testing/resolvers.rb', line 11 def initialize(hash = {}, pattern=nil) super(pattern) @hash = hash end |
Instance Attribute Details
Instance Method Details
permalink #to_s ⇒ Object
[View source]
16 17 18 |
# File 'actionpack/lib/action_view/testing/resolvers.rb', line 16 def to_s @hash.keys.join(', ') end |