Sha256: 3f5a52eb65e3bbb1bb4b06f380b7ae063ddb8ef1ab1a4dfbc45fe27a1d3a1dd0

Contents?: true

Size: 1.32 KB

Versions: 4

Compression:

Stored size: 1.32 KB

Contents

require 'abstract_unit'

class TestAttributeMethods < ActiveSupport::TestCase
  fixtures :reference_types

  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_nil(rt.to_key)
  end

  def test_to_key_with_composite_key_destroyed
    ref_code = ReferenceCode.find(1, 1)
    ref_code.destroy
    assert_nil(ref_code.to_key)
  end


end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
composite_primary_keys-4.0.0.beta7 test/test_attribute_methods.rb
composite_primary_keys-4.0.0.beta6 test/test_attribute_methods.rb
composite_primary_keys-4.0.0.beta5 test/test_attribute_methods.rb
composite_primary_keys-4.0.0.beta4 test/test_attribute_methods.rb