mirror of
https://github.com/paper-trail-gem/paper_trail.git
synced 2022-11-09 11:33:19 -05:00
17 lines
519 B
Ruby
17 lines
519 B
Ruby
require 'rails_helper'
|
|
|
|
# This model is in the test suite soley for the purpose of testing ActiveRecord::Enum,
|
|
# which is available in ActiveRecord4+ only
|
|
describe PostWithStatus, :type => :model do
|
|
if defined?(ActiveRecord::Enum)
|
|
with_versioning do
|
|
let(:post) { PostWithStatus.create!(:status => 'draft') }
|
|
|
|
it "should stash the enum value properly in versions" do
|
|
post.published!
|
|
post.archived!
|
|
expect(post.previous_version.published?).to be true
|
|
end
|
|
end
|
|
end
|
|
end
|