Class: ActiveRecord::Fixture
- Inherits:
-
Object
- Object
- ActiveRecord::Fixture
- Includes:
- Enumerable
- Defined in:
- lib/active_record/fixtures.rb
Overview
:nodoc:
Defined Under Namespace
Classes: FixtureError, FormatError
Instance Attribute Summary collapse
-
#fixture ⇒ Object
(also: #to_hash)
readonly
Returns the value of attribute fixture.
-
#model_class ⇒ Object
readonly
Returns the value of attribute model_class.
Instance Method Summary collapse
- #[](key) ⇒ Object
- #class_name ⇒ Object
- #each ⇒ Object
- #find ⇒ Object
-
#initialize(fixture, model_class) ⇒ Fixture
constructor
A new instance of Fixture.
Constructor Details
#initialize(fixture, model_class) ⇒ Fixture
Returns a new instance of Fixture.
824 825 826 827 |
# File 'lib/active_record/fixtures.rb', line 824 def initialize(fixture, model_class) @fixture = fixture @model_class = model_class end |
Instance Attribute Details
#fixture ⇒ Object (readonly) Also known as: to_hash
Returns the value of attribute fixture.
822 823 824 |
# File 'lib/active_record/fixtures.rb', line 822 def fixture @fixture end |
#model_class ⇒ Object (readonly)
Returns the value of attribute model_class.
822 823 824 |
# File 'lib/active_record/fixtures.rb', line 822 def model_class @model_class end |
Instance Method Details
#[](key) ⇒ Object
837 838 839 |
# File 'lib/active_record/fixtures.rb', line 837 def [](key) fixture[key] end |
#class_name ⇒ Object
829 830 831 |
# File 'lib/active_record/fixtures.rb', line 829 def class_name model_class.name if model_class end |
#each ⇒ Object
833 834 835 |
# File 'lib/active_record/fixtures.rb', line 833 def each fixture.each { |item| yield item } end |
#find ⇒ Object
843 844 845 846 847 848 849 850 851 |
# File 'lib/active_record/fixtures.rb', line 843 def find if model_class model_class.unscoped do model_class.find(fixture[model_class.primary_key]) end else raise FixtureClassNotFound, "No class attached to find." end end |