This rule was added in rubocop-rspec 2.9.0. Once again, we were applying it about 50% of the time.
26 lines
663 B
Ruby
26 lines
663 B
Ruby
require "rails_helper"
|
|
|
|
describe ApplicationHelper do
|
|
describe "#author_of?" do
|
|
it "is true if user is the author" do
|
|
user = create(:user)
|
|
proposal = create(:proposal, author: user)
|
|
expect(author_of?(proposal, user)).to be true
|
|
end
|
|
|
|
it "is false if user is not the author" do
|
|
user = create(:user)
|
|
proposal = create(:proposal)
|
|
expect(author_of?(proposal, user)).to be false
|
|
end
|
|
|
|
it "is false if user or authorable is nil" do
|
|
user = create(:user)
|
|
proposal = create(:proposal)
|
|
|
|
expect(author_of?(nil, user)).to be false
|
|
expect(author_of?(proposal, nil)).to be false
|
|
end
|
|
end
|
|
end
|