Sha256: c26ca0ab4815a129c912f823effe7a91e8c5dd43d24a2af214afe2815e788645
Contents?: true
Size: 1005 Bytes
Versions: 42
Compression:
Stored size: 1005 Bytes
Contents
require "spec_helper" module Lines describe Article do it "has a valid factory" do FactoryGirl.create(:article).should be_valid end it "is invalid without a title" do FactoryGirl.build(:article, title: nil).should_not be_valid end it "is invalid without content" do FactoryGirl.build(:article, content: nil).should_not be_valid end it "is invalid with neither hero_image nor short_hero_image " do FactoryGirl.build(:article, hero_image: nil, short_hero_image: nil).should_not be_valid end it "is invalid with both a hero_image and a short_hero_image" do FactoryGirl.build(:article, short_hero_image: 1 ).should_not be_valid end it "is invalid without one or more authors" do FactoryGirl.build(:article, author_ids: nil).should_not be_valid end it "is valid with tags" do a = FactoryGirl.create(:article_with_tags) a.should be_valid a.tag_list.should == ['tag1', 'tag2'] end end end
Version data entries
42 entries across 42 versions & 1 rubygems