1
0
Fork 0
mirror of https://github.com/paper-trail-gem/paper_trail.git synced 2022-11-09 11:33:19 -05:00
paper-trail-gem--paper_trail/spec/models/on/empty_array_spec.rb
2017-12-10 23:05:39 -05:00

32 lines
935 B
Ruby

# frozen_string_literal: true
require "spec_helper"
require_dependency "on/empty_array"
module On
RSpec.describe EmptyArray, type: :model, versioning: true do
describe "#create" do
it "does not create any version records" do
record = described_class.create(name: "Alice")
expect(record.versions.length).to(eq(0))
end
end
describe "#touch_with_version" do
it "creates a version record" do
record = described_class.create(name: "Alice")
record.paper_trail.touch_with_version
expect(record.versions.length).to(eq(1))
expect(record.versions.first.event).to(eq("update"))
end
end
describe "#update_attributes" do
it "does not create any version records" do
record = described_class.create(name: "Alice")
record.update_attributes(name: "blah")
expect(record.versions.length).to(eq(0))
end
end
end
end