Class: ActiveRecord::FixtureSet::TableRow
- Defined in:
- activerecord/lib/active_record/fixture_set/table_row.rb
Overview
:nodoc:
Defined Under Namespace
Classes: HasManyThroughProxy, ReflectionProxy
Instance Method Summary collapse
-
#initialize(fixture, table_rows:, label:, now:) ⇒ TableRow
constructor
A new instance of TableRow.
- #to_hash ⇒ Object
Constructor Details
#initialize(fixture, table_rows:, label:, now:) ⇒ TableRow
Returns a new instance of TableRow.
38 39 40 41 42 43 44 |
# File 'activerecord/lib/active_record/fixture_set/table_row.rb', line 38 def initialize(fixture, table_rows:, label:, now:) @table_rows = table_rows @label = label @now = now @row = fixture.to_hash fill_row_model_attributes end |