test/helpers/serialization_format.rb in identity_cache-0.0.4 vs test/helpers/serialization_format.rb in identity_cache-0.0.5
- old
+ new
@@ -1,23 +1,23 @@
module SerializationFormat
def serialized_record
AssociatedRecord.cache_has_many :deeply_associated_records, :embed => true
- AssociatedRecord.cache_belongs_to :record, :embed => false
- Record.cache_has_many :associated_records, :embed => true
- Record.cache_has_one :associated
+ AssociatedRecord.cache_belongs_to :item, :embed => false
+ Item.cache_has_many :associated_records, :embed => true
+ Item.cache_has_one :associated
- record = Record.new(:title => 'foo')
+ record = Item.new(:title => 'foo')
record.associated_records << AssociatedRecord.new(:name => 'bar')
record.associated_records << AssociatedRecord.new(:name => 'baz')
record.associated = AssociatedRecord.new(:name => 'bork')
record.not_cached_records << NotCachedRecord.new(:name => 'NoCache')
record.associated.deeply_associated_records << DeeplyAssociatedRecord.new(:name => "corge")
record.associated.deeply_associated_records << DeeplyAssociatedRecord.new(:name => "qux")
- record.created_at = DateTime.new
+ record.created_at = Time.parse('1970-01-01T00:00:00 UTC')
record.save
- Record.update_all("updated_at='#{record.created_at}'", "id='#{record.id}'")
+ Item.where(id: record.id).update_all(updated_at: record.created_at)
record.reload
- Record.fetch(record.id)
+ Item.fetch(record.id)
IdentityCache.fetch(record.primary_cache_index_key)
end
def serialized_record_file
File.expand_path("../../fixtures/serialized_record", __FILE__)