2014-10-09 15:04:17 -04:00
|
|
|
require 'rails_helper'
|
2013-11-16 18:39:08 -05:00
|
|
|
|
2016-02-15 22:32:40 -05:00
|
|
|
describe "Articles management", type: :request, order: :defined do
|
|
|
|
let(:valid_params) { { article: { title: 'Doh', content: FFaker::Lorem.sentence } } }
|
2013-11-16 18:39:08 -05:00
|
|
|
|
|
|
|
context "versioning disabled" do
|
2014-10-09 15:04:17 -04:00
|
|
|
specify { expect(PaperTrail).not_to be_enabled }
|
2013-11-16 18:39:08 -05:00
|
|
|
|
|
|
|
it "should not create a version" do
|
2014-10-09 15:04:17 -04:00
|
|
|
expect(PaperTrail).to be_enabled_for_controller
|
2016-02-15 18:27:57 -05:00
|
|
|
expect {
|
|
|
|
post articles_path, params_wrapper(valid_params)
|
|
|
|
}.to_not change(PaperTrail::Version, :count)
|
2013-11-16 18:39:08 -05:00
|
|
|
end
|
|
|
|
|
2014-03-03 16:52:14 -05:00
|
|
|
it "should not leak the state of the `PaperTrail.enabled_for_controller?` into the next test" do
|
2014-10-09 15:04:17 -04:00
|
|
|
expect(PaperTrail).to be_enabled_for_controller
|
2013-11-16 18:39:08 -05:00
|
|
|
end
|
|
|
|
end
|
2014-03-20 16:04:53 -04:00
|
|
|
|
|
|
|
with_versioning do
|
|
|
|
let(:article) { Article.last }
|
|
|
|
|
|
|
|
context "`current_user` method returns a `String`" do
|
2015-01-14 14:09:30 -05:00
|
|
|
it "should set 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)
|
2015-01-14 14:09:30 -05:00
|
|
|
expect(article.title).to eq('Doh')
|
|
|
|
expect(article.versions.last.whodunnit).to eq('foobar')
|
2014-03-20 16:04:53 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2013-11-16 18:39:08 -05:00
|
|
|
end
|