Sha256: fb1df0fd23c1e52eb46d95f1534d4a85dffcf0b8a11e02029e82da760829f80e

Contents?: true

Size: 1.57 KB

Versions: 6

Compression:

Stored size: 1.57 KB

Contents

require 'test_helper'

class InheritanceColumnTest < ActiveSupport::TestCase

  context 'STI models' do
    setup do
      @animal = Animal.create :name => 'Animal'
      @animal.update_attributes :name => 'Animal from the Muppets'
      @animal.update_attributes :name => 'Animal Muppet'
      @animal.destroy

      @dog = Dog.create :name => 'Snoopy'
      @dog.update_attributes :name => 'Scooby'
      @dog.update_attributes :name => 'Scooby Doo'
      @dog.destroy

      @cat = Cat.create :name => 'Garfield'
      @cat.update_attributes :name => 'Garfield (I hate Mondays)'
      @cat.update_attributes :name => 'Garfield The Cat'
      @cat.destroy
    end

    should 'work with custom STI inheritance column' do
      assert_equal 12, PaperTrail::Version.count
      assert_equal 4, @animal.versions.count
      assert @animal.versions.first.reify.nil?
      @animal.versions[1..-1].each { |v| assert_equal 'Animal', v.reify.class.name }

      # For some reason `@dog.versions` doesn't include the final `destroy` version.
      # Neither do `@dog.versions.scoped` nor `@dog.versions(true)` nor `@dog.versions.reload`.
      dog_versions = PaperTrail::Version.where(:item_id => @dog.id)
      assert_equal 4, dog_versions.count
      assert dog_versions.first.reify.nil?
      dog_versions[1..-1].each { |v| assert_equal 'Dog', v.reify.class.name }

      cat_versions = PaperTrail::Version.where(:item_id => @cat.id)
      assert_equal 4, cat_versions.count
      assert cat_versions.first.reify.nil?
      cat_versions[1..-1].each { |v| assert_equal 'Cat', v.reify.class.name }
    end
  end

end

Version data entries

6 entries across 6 versions & 2 rubygems

Version Path
paper_trail-3.0.1 test/unit/inheritance_column_test.rb
paper_trail-3.0.0 test/unit/inheritance_column_test.rb
paper_trail-3.0.0.rc2 test/unit/inheritance_column_test.rb
paper_trail-3.0.0.rc1 test/unit/inheritance_column_test.rb
paper_trail_without_deprecated-3.0.0.beta1 test/unit/inheritance_column_test.rb
paper_trail-3.0.0.beta1 test/unit/inheritance_column_test.rb