Sha256: 1c17cc6f3e2a8e5a5032f15e6b5f991577e7acd595db4da48096310b580dc29b
Contents?: true
Size: 1.42 KB
Versions: 7
Compression:
Stored size: 1.42 KB
Contents
FactoryGirl.define do sequence(:book_title) { |n| "Book #{n}" } sequence(:chapter_title) { |n| "Chapter #{n}" } sequence(:end_note) { |n| "Endnote #{n}" } factory :group do sequence(:order) { |n| "Order #{n}" } end factory :invalid_topic, class: "Topic" do sequence(:title) { |n| "Title #{n}" } author_name nil end factory :topic do sequence(:title) { |n| "Title #{n}" } sequence(:author_name) { |n| "Author #{n}" } end factory :widget do sequence(:w_id) { |n| n } end factory :question do sequence(:body) { |n| "Text #{n}" } trait :with_rule do after(:build) do |question| question.build_rule(FactoryGirl.attributes_for(:rule)) end end end factory :rule do sequence(:id) { |n| n } sequence(:condition_text) { |n| "q_#{n}_#{n}" } end factory :topic_with_book, parent: :topic do after(:build) do |topic| 2.times do book = topic.books.build(title: FactoryGirl.generate(:book_title), author_name: 'Stephen King') 3.times do book.chapters.build(title: FactoryGirl.generate(:chapter_title)) end 4.times do book.end_notes.build(note: FactoryGirl.generate(:end_note)) end end end end factory :book do title 'Tortilla Flat' author_name 'John Steinbeck' end factory :car do sequence(:Name) { |n| n } sequence(:Features) { |n| "Feature #{n}" } end end
Version data entries
7 entries across 7 versions & 1 rubygems