Sha256: 04b35a0ec243f5b826d02d16339ae4926d463b32b1edf6b38de2247f7e05166f
Contents?: true
Size: 899 Bytes
Versions: 5
Compression:
Stored size: 899 Bytes
Contents
require 'abstract_unit' require 'fixtures/reference_type' require 'fixtures/reference_code' class CloneTest < Test::Unit::TestCase fixtures :reference_types, :reference_codes CLASSES = { :single => { :class => ReferenceType, :primary_keys => [:reference_type_id], }, :dual => { :class => ReferenceCode, :primary_keys => [:reference_type_id, :reference_code], }, } def setup super self.class.classes = CLASSES end def test_truth testing_with do clone = @first.clone assert_equal @first.attributes.block(@klass.primary_key), clone.attributes if composite? @klass.primary_key.each {|key| assert_nil clone[key], "Primary key '#{key}' should be nil"} else assert_nil clone[@klass.primary_key], "Sole primary key should be nil" end end end end
Version data entries
5 entries across 5 versions & 1 rubygems