mirror of
https://github.com/paper-trail-gem/paper_trail.git
synced 2022-11-09 11:33:19 -05:00
29 lines
947 B
Ruby
29 lines
947 B
Ruby
require "rspec/core"
|
|
require "rspec/matchers"
|
|
require "paper_trail/frameworks/rspec/helpers"
|
|
|
|
RSpec.configure do |config|
|
|
config.include ::PaperTrail::RSpec::Helpers::InstanceMethods
|
|
config.extend ::PaperTrail::RSpec::Helpers::ClassMethods
|
|
|
|
config.before(:each) do
|
|
::PaperTrail.enabled = false
|
|
::PaperTrail.enabled_for_controller = true
|
|
::PaperTrail.whodunnit = nil
|
|
::PaperTrail.controller_info = {} if defined?(::Rails) && defined?(::RSpec::Rails)
|
|
end
|
|
|
|
config.before(:each, versioning: true) do
|
|
::PaperTrail.enabled = true
|
|
end
|
|
end
|
|
|
|
RSpec::Matchers.define :be_versioned do
|
|
# check to see if the model has `has_paper_trail` declared on it
|
|
match { |actual| actual.is_a?(::PaperTrail::Model::InstanceMethods) }
|
|
end
|
|
|
|
RSpec::Matchers.define :have_a_version_with do |attributes|
|
|
# check if the model has a version with the specified attributes
|
|
match { |actual| actual.versions.where_object(attributes).any? }
|
|
end
|