mirror of
https://github.com/paper-trail-gem/paper_trail.git
synced 2022-11-09 11:33:19 -05:00
44 lines
1.2 KiB
Ruby
44 lines
1.2 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require "spec_helper"
|
|
require "support/custom_json_serializer"
|
|
|
|
RSpec.describe Boolit, type: :model, versioning: true do
|
|
let(:boolit) { Boolit.create! }
|
|
|
|
before { boolit.update!(name: FFaker::Name.name) }
|
|
|
|
it "has two versions" do
|
|
expect(boolit.versions.size).to eq(2)
|
|
end
|
|
|
|
it "can be reified and persisted" do
|
|
expect { boolit.versions.last.reify.save! }.not_to raise_error
|
|
end
|
|
|
|
context "when Instance falls out of default scope" do
|
|
before { boolit.update!(scoped: false) }
|
|
|
|
it "is NOT scoped" do
|
|
expect(Boolit.first).to be_nil
|
|
end
|
|
|
|
it "still can be reified and persisted" do
|
|
expect { boolit.paper_trail.previous_version.save! }.not_to raise_error
|
|
end
|
|
|
|
context "with `nil` attributes on the live instance" do
|
|
before do
|
|
PaperTrail.serializer = CustomJsonSerializer
|
|
boolit.update!(name: nil)
|
|
boolit.update!(name: FFaker::Name.name)
|
|
end
|
|
|
|
after { PaperTrail.serializer = PaperTrail::Serializers::YAML }
|
|
|
|
it "does not overwrite that attribute during the reification process" do
|
|
expect(boolit.paper_trail.previous_version.name).to be_nil
|
|
end
|
|
end
|
|
end
|
|
end
|