mirror of
https://github.com/paper-trail-gem/paper_trail.git
synced 2022-11-09 11:33:19 -05:00
38fa23873c
The reason some projects have both is so that some spec files can be run in isolation, without the rails stuff. In practice, I don't find myself ever doing this. So, the complexity of two files is unnecessary.
11 lines
287 B
Ruby
11 lines
287 B
Ruby
require "spec_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
|