1
0
Fork 0
mirror of https://github.com/thoughtbot/factory_bot.git synced 2022-11-09 11:43:51 -05:00
thoughtbot--factory_bot/spec/acceptance/create_list_spec.rb

106 lines
2.5 KiB
Ruby
Raw Normal View History

require 'spec_helper'
describe "create multiple instances" do
before do
define_model('Post', title: :string, position: :integer)
FactoryGirl.define do
factory(:post) do |post|
post.title "Through the Looking Glass"
post.position { rand(10**4) }
end
end
end
context "without default attributes" do
subject { FactoryGirl.create_list(:post, 20) }
2013-01-18 13:27:57 -05:00
its(:length) { should eq 20 }
it "creates all the posts" do
subject.each do |record|
2013-01-18 13:27:57 -05:00
expect(record).not_to be_new_record
end
end
it "uses the default factory values" do
subject.each do |record|
2013-01-18 13:27:57 -05:00
expect(record.title).to eq "Through the Looking Glass"
end
end
end
context "with default attributes" do
2012-03-09 17:20:38 -05:00
subject { FactoryGirl.create_list(:post, 20, title: "The Hunting of the Snark") }
it "overrides the default values" do
subject.each do |record|
2013-01-18 13:27:57 -05:00
expect(record.title).to eq "The Hunting of the Snark"
end
end
end
context "with a block" do
subject do
FactoryGirl.create_list(:post, 20, title: "The Listing of the Block") do |post|
post.position = post.id
end
end
it "uses the new values" do
subject.each_with_index do |record, index|
2013-01-18 13:27:57 -05:00
expect(record.position).to eq record.id
end
end
end
context "without the count" do
subject { FactoryGirl.create_list(:post, title: "The Hunting of the Bear") }
it "raise ArgumentError with the proper error message" do
expect { subject }.to raise_error(ArgumentError, /count missing/)
end
end
end
describe "multiple creates and transient attributes to dynamically build attribute lists" do
before do
2012-03-09 17:20:38 -05:00
define_model('User', name: :string) do
has_many :posts
end
2012-03-09 17:20:38 -05:00
define_model('Post', title: :string, user_id: :integer) do
belongs_to :user
end
FactoryGirl.define do
factory :post do
title "Through the Looking Glass"
user
end
factory :user do
name "John Doe"
factory :user_with_posts do
transient do
posts_count 5
end
after(:create) do |user, evaluator|
2012-03-09 17:20:38 -05:00
FactoryGirl.create_list(:post, evaluator.posts_count, user: user)
end
end
end
end
end
it "generates the correct number of posts" do
2013-01-18 13:27:57 -05:00
expect(FactoryGirl.create(:user_with_posts).posts.length).to eq 5
end
it "allows the number of posts to be modified" do
2013-01-18 13:27:57 -05:00
expect(FactoryGirl.create(:user_with_posts, posts_count: 2).posts.length).to eq 2
end
end