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/requests/articles_spec.rb

33 lines
958 B
Ruby
Raw Normal View History

2017-12-10 23:05:11 -05:00
# frozen_string_literal: true
require "spec_helper"
RSpec.describe "Articles management", type: :request, order: :defined do
let(:valid_params) { { article: { title: "Doh", content: FFaker::Lorem.sentence } } }
context "versioning disabled" do
specify { expect(PaperTrail).not_to be_enabled }
2017-04-01 01:50:13 -04:00
it "does not create a version" do
expect(PaperTrail.request).to be_enabled
2016-02-15 18:27:57 -05:00
expect {
post articles_path, params_wrapper(valid_params)
2017-04-01 01:59:47 -04:00
}.not_to change(PaperTrail::Version, :count)
end
end
with_versioning do
let(:article) { Article.last }
context "`current_user` method returns a `String`" do
2017-04-01 01:50:13 -04:00
it "sets that value as the `whodunnit`" do
2016-02-15 18:27:57 -05:00
expect {
post articles_path, params_wrapper(valid_params)
}.to change(PaperTrail::Version, :count).by(1)
expect(article.title).to eq("Doh")
expect(article.versions.last.whodunnit).to eq("foobar")
end
end
end
end