mirror of
https://github.com/paper-trail-gem/paper_trail.git
synced 2022-11-09 11:33:19 -05:00
23ffbdc7e1
Fixes NoMethodError when an STI parent class is unversioned and thus does not respond to `unserialize_attribute_changes_for_paper_trail!` [Fixes #738]
5 lines
103 B
Ruby
5 lines
103 B
Ruby
require "rails_helper"
|
|
|
|
describe Vehicle, type: :model do
|
|
it { is_expected.to_not be_versioned }
|
|
end
|