paper-trail-gem--paper_trail/spec/models/gadget_spec.rb

65 lines
2.0 KiB
Ruby
Raw Normal View History

require "rails_helper"
2016-02-15 22:32:40 -05:00
describe Gadget, type: :model do
it { is_expected.to be_versioned }
let(:gadget) { Gadget.create!(name: "Wrench", brand: "Acme") }
2016-02-15 22:32:40 -05:00
describe "updates", versioning: true do
2017-04-01 01:50:13 -04:00
it "generates a version for updates to `name` attribute" do
expect { gadget.update_attribute(:name, "Hammer") }.to(change { gadget.versions.size }.by(1))
end
2017-04-01 01:50:13 -04:00
it "ignores for updates to `brand` attribute" do
2017-04-01 01:59:47 -04:00
expect { gadget.update_attribute(:brand, "Stanley") }.not_to(change { gadget.versions.size })
end
2017-04-01 01:50:13 -04:00
it "still generates a version when only the `updated_at` attribute is updated" do
# Plus 1 second because MySQL lacks sub-second resolution
2016-02-15 18:27:57 -05:00
expect {
gadget.update_attribute(:updated_at, Time.now + 1)
}.to(change { gadget.versions.size }.by(1))
end
end
describe "#changed_notably?", versioning: true do
subject { Gadget.new(created_at: Time.now) }
context "create events" do
it "returns true" do
expect(subject.paper_trail.changed_notably?).to eq(true)
end
end
context "update events" do
before { subject.save! }
context "without update timestamps" do
it "only acknowledges non-ignored attrs" do
subject.name = "Wrench"
expect(subject.paper_trail.changed_notably?).to be true
end
it "does not acknowledge ignored attr (brand)" do
subject.brand = "Acme"
expect(subject.paper_trail.changed_notably?).to be false
end
end
context "with update timestamps" do
it "only acknowledges non-ignored attrs" do
subject.name = "Wrench"
subject.updated_at = Time.now
expect(subject.paper_trail.changed_notably?).to be true
end
it "does not acknowledge ignored attrs and timestamps only" do
subject.brand = "Acme"
subject.updated_at = Time.now
expect(subject.paper_trail.changed_notably?).to be false
end
end
end
end
end