mirror of
https://github.com/paper-trail-gem/paper_trail.git
synced 2022-11-09 11:33:19 -05:00
11 lines
292 B
Ruby
11 lines
292 B
Ruby
require 'rails_helper'
|
|
|
|
describe Thing, :type => :model do
|
|
it { is_expected.to be_versioned }
|
|
|
|
describe "should not store object_changes", :versioning => true do
|
|
let(:thing) { Thing.create(:name =>"pencil") }
|
|
|
|
it { expect(thing.versions.last.object_changes).to be_nil }
|
|
end
|
|
end
|