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/post_with_status_spec.rb

18 lines
497 B
Ruby
Raw Normal View History

require 'spec_helper'
# This model is in the test suite soley for the purpose of testing ActiveRecord::Enum,
# which is available in ActiveRecord4+ only
describe PostWithStatus 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!
post.previous_version.published?.should == true
end
end
end
end