Method: Fixtury::Configuration#add_fixture_path
- Defined in:
- lib/fixtury/configuration.rb
#add_fixture_path(*path_or_globs) ⇒ Object Also known as: add_fixture_paths
Add a file or glob pattern to the list of fixture files.
43 44 45 |
# File 'lib/fixtury/configuration.rb', line 43 def add_fixture_path(*path_or_globs) @fixture_files = fixture_files | Dir[*path_or_globs] end |