mirror of
https://github.com/paper-trail-gem/paper_trail.git
synced 2022-11-09 11:33:19 -05:00
c4148de9d0
Enable various standard configuration.
11 lines
288 B
Ruby
11 lines
288 B
Ruby
require "rails_helper"
|
|
|
|
RSpec.describe Thing, type: :model do
|
|
it { is_expected.to be_versioned }
|
|
|
|
describe "does 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
|