mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
a94220b66c
Rename `ActiveRecord::Fixtures` class to `ActiveRecord::FixtureSet`. Instances of this class normally hold a collection of fixtures (records) loaded either from a single YAML file, or from a file and a folder with the same name. This change make the class name singular and makes the class easier to distinguish from the modules like `ActiveRecord::TestFixtures`, which operates on multiple fixture sets, or `DelegatingFixtures`, `::Fixtures`, etc., and from the class `ActiveRecord::Fixture`, which corresponds to a single fixture.
7 lines
297 B
YAML
7 lines
297 B
YAML
george_blackbeard:
|
|
parrot_id: <%= ActiveRecord::FixtureSet.identify(:george) %>
|
|
pirate_id: <%= ActiveRecord::FixtureSet.identify(:blackbeard) %>
|
|
|
|
louis_blackbeard:
|
|
parrot_id: <%= ActiveRecord::FixtureSet.identify(:louis) %>
|
|
pirate_id: <%= ActiveRecord::FixtureSet.identify(:blackbeard) %>
|