Both avoiding 'should' and repiting 'it' on the tests description improves reading them and also makes all descriptions consistent. Read about cop at http://www.rubydoc.info/gems/rubocop-rspec/RuboCop/Cop/RSpec/ExampleWording
31 lines
615 B
Ruby
31 lines
615 B
Ruby
require 'rails_helper'
|
|
|
|
describe Legislation::Proposal do
|
|
let(:proposal) { build(:legislation_proposal) }
|
|
|
|
it "is valid" do
|
|
expect(proposal).to be_valid
|
|
end
|
|
|
|
it "is not valid without a process" do
|
|
proposal.process = nil
|
|
expect(proposal).to_not be_valid
|
|
end
|
|
|
|
it "is not valid without an author" do
|
|
proposal.author = nil
|
|
expect(proposal).to_not be_valid
|
|
end
|
|
|
|
it "is not valid without a title" do
|
|
proposal.title = nil
|
|
expect(proposal).to_not be_valid
|
|
end
|
|
|
|
it "is not valid without a summary" do
|
|
proposal.summary = nil
|
|
expect(proposal).to_not be_valid
|
|
end
|
|
|
|
end
|