Sha256: 9b1ede113bcc7af2339aa079a24c1ceef47c9b18ebd1cf397ffee939beb868c1
Contents?: true
Size: 953 Bytes
Versions: 201
Compression:
Stored size: 953 Bytes
Contents
require 'spec_helper' describe "build multiple instances" do before do define_model('Post', title: :string) FactoryGirl.define do factory(:post) do |post| post.title "Through the Looking Glass" end end end context "without default attributes" do subject { FactoryGirl.build_list(:post, 20) } its(:length) { should == 20 } it "builds (but doesn't save) all the posts" do subject.each do |record| record.should be_new_record end end it "uses the default factory values" do subject.each do |record| record.title.should == "Through the Looking Glass" end end end context "with default attributes" do subject { FactoryGirl.build_list(:post, 20, title: "The Hunting of the Snark") } it "overrides the default values" do subject.each do |record| record.title.should == "The Hunting of the Snark" end end end end
Version data entries
201 entries across 93 versions & 7 rubygems