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

69 lines
2.3 KiB
Ruby
Raw Normal View History

require "rails_helper"
2016-02-16 03:32:40 +00:00
describe Gadget, type: :model do
it { is_expected.to be_versioned }
let(:gadget) { Gadget.create!(name: "Wrench", brand: "Acme") }
2016-02-16 03:32:40 +00:00
describe "updates", versioning: true do
it "should generate a version for updates to `name` attribute" do
2016-03-05 22:11:08 +00:00
expect { gadget.update_attribute(:name, "Hammer").to change { gadget.versions.size }.by(1) }
end
it "should ignore for updates to `brand` attribute" do
2016-03-05 22:11:08 +00:00
expect { gadget.update_attribute(:brand, "Stanley") }.to_not change { gadget.versions.size }
end
it "should still generate a version when only the `updated_at` attribute is updated" do
# Plus 1 second because MySQL lacks sub-second resolution
2016-02-15 23:27:57 +00:00
expect {
gadget.update_attribute(:updated_at, Time.now + 1)
2016-03-05 22:11:08 +00:00
}.to change { gadget.versions.size }.by(1)
end
end
describe "Methods" do
2016-02-16 03:32:40 +00:00
describe "Instance", versioning: true do
describe "private" do
describe '#changed_notably?' do
2016-02-16 03:32:40 +00:00
subject { Gadget.new(created_at: Time.now) }
it { expect(subject.private_methods).to include(:changed_notably?) }
context "create events" do
it { expect(subject.send(:changed_notably?)).to be true }
end
context "update events" do
before { subject.save! }
context "without update timestamps" do
it "should only acknowledge non-ignored attrs" do
subject.name = "Wrench"
expect(subject.send(:changed_notably?)).to be true
end
it "should not acknowledge ignored attr (brand)" do
subject.brand = "Acme"
expect(subject.send(:changed_notably?)).to be false
end
end
context "with update timestamps" do
it "should only acknowledge non-ignored attrs" do
subject.name, subject.updated_at = "Wrench", Time.now
expect(subject.send(:changed_notably?)).to be true
end
it "should not acknowledge ignored attrs and timestamps only" do
subject.brand, subject.updated_at = "Acme", Time.now
expect(subject.send(:changed_notably?)).to be false
end
end
end
end
end
end
end
end