paper-trail-gem--paper_trail/spec/modules/paper_trail_spec.rb

28 lines
795 B
Ruby

require "rails_helper"
describe PaperTrail, type: :module, versioning: true do
describe "#config" do
it { is_expected.to respond_to(:config) }
it "should allow for config values to be set" do
expect(subject.config.enabled).to eq(true)
subject.config.enabled = false
expect(subject.config.enabled).to eq(false)
end
it "should accept blocks and yield the config instance" do
expect(subject.config.enabled).to eq(true)
subject.config { |c| c.enabled = false }
expect(subject.config.enabled).to eq(false)
end
end
describe "#configure" do
it { is_expected.to respond_to(:configure) }
it "should be an alias for the `config` method" do
expect(subject.method(:configure)).to eq(subject.method(:config))
end
end
end