23 lines
769 B
Ruby
23 lines
769 B
Ruby
describe Poll, type: :model do
|
|
let(:status) { FactoryGirl.create(:status_message) }
|
|
let(:poll) { Poll.new(question: "What do you think about apples?", status_message: status) }
|
|
|
|
describe "validation" do
|
|
it "should not create a poll when it has less than two answers" do
|
|
poll.poll_answers.build(answer: "1").poll = poll
|
|
expect(poll).not_to be_valid
|
|
end
|
|
|
|
it "should create a poll when it has more than two answers" do
|
|
poll.poll_answers.build(answer: "1").poll = poll
|
|
poll.poll_answers.build(answer: "2").poll = poll
|
|
expect(poll).to be_valid
|
|
end
|
|
|
|
it "should not create a poll when question in blank" do
|
|
poll.question = " "
|
|
poll.valid?
|
|
expect(poll.errors).to have_key(:question)
|
|
end
|
|
end
|
|
end
|