Sha256: 7b857d890779b7cf56536b26f7e2ec098b135170c6e91b6ac2eff816f92e7715

Contents?: true

Size: 1.29 KB

Versions: 5

Compression:

Stored size: 1.29 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(: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
end

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
activerecord-import-uuid-0.2 test/support/factories.rb
activerecord-import-uuid-0.1 test/support/factories.rb
activerecord-import-0.15.0 test/support/factories.rb
activerecord-import-0.14.1 test/support/factories.rb
activerecord-import-0.14.0 test/support/factories.rb