Sha256: 439ec4348d62b689fc7b955fdc97ff304feed58198399d7c6fa74fd624028961

Contents?: true

Size: 1.39 KB

Versions: 23

Compression:

Stored size: 1.39 KB

Contents

require File.expand_path('../abstract_unit', __FILE__)

class TestAttributeMethods < ActiveSupport::TestCase
  fixtures :reference_types, :reference_codes

  def test_read_attribute_with_single_key
    rt = ReferenceType.find(1)
    assert_equal(1, rt.reference_type_id)
    assert_equal('NAME_PREFIX', rt.type_label)
    assert_equal('Name Prefix', rt.abbreviation)
  end

  def test_read_attribute_with_composite_keys
    ref_code = ReferenceCode.find(1, 1)
    assert_equal(1, ref_code.id.first)
    assert_equal(1, ref_code.id.last)
    assert_equal('Mr', ref_code.abbreviation)
  end

  # to_key returns array even for single key
  def test_to_key_with_single_key
    rt = ReferenceType.find(1)
    assert_equal([1], rt.to_key)
  end

  def test_to_key_with_composite_keys
    ref_code = ReferenceCode.find(1, 1)
    assert_equal(1, ref_code.to_key.first)
    assert_equal(1, ref_code.to_key.last)
  end

  def test_to_key_with_single_key_unsaved
    rt = ReferenceType.new
    assert_nil(rt.to_key)
  end

  def test_to_key_with_composite_keys_unsaved
    ref_code = ReferenceCode.new
    assert_nil(ref_code.to_key)
  end

  def test_to_key_with_single_key_destroyed
    rt = ReferenceType.find(1)
    rt.destroy
    assert_equal([1], rt.to_key)
  end

  def test_to_key_with_composite_key_destroyed
    ref_code = ReferenceCode.find(1, 1)
    ref_code.destroy
    assert_equal([1,1], ref_code.to_key)
  end


end

Version data entries

23 entries across 23 versions & 1 rubygems

Version Path
composite_primary_keys-6.0.8 test/test_attribute_methods.rb
composite_primary_keys-6.0.7 test/test_attribute_methods.rb
composite_primary_keys-6.0.6 test/test_attribute_methods.rb
composite_primary_keys-6.0.5 test/test_attribute_methods.rb
composite_primary_keys-6.0.3 test/test_attribute_methods.rb
composite_primary_keys-5.0.14 test/test_attribute_methods.rb
composite_primary_keys-6.0.1 test/test_attribute_methods.rb
composite_primary_keys-6.0.0 test/test_attribute_methods.rb
composite_primary_keys-5.0.13 test/test_attribute_methods.rb
composite_primary_keys-5.0.12 test/test_attribute_methods.rb
composite_primary_keys-5.0.11 test/test_attribute_methods.rb
composite_primary_keys-5.0.10 test/test_attribute_methods.rb
composite_primary_keys-5.0.9 test/test_attribute_methods.rb
composite_primary_keys-5.0.8 test/test_attribute_methods.rb
composite_primary_keys-5.0.6 test/test_attribute_methods.rb
composite_primary_keys-5.0.5 test/test_attribute_methods.rb
composite_primary_keys-5.0.4 test/test_attribute_methods.rb
composite_primary_keys-5.0.2 test/test_attribute_methods.rb
composite_primary_keys-5.0.1 test/test_attribute_methods.rb
composite_primary_keys-5.0.0 test/test_attribute_methods.rb