Last active
December 13, 2015 22:59
-
-
Save daviddavis/4988618 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FactoryGirl.define do | |
| factory :content_view_environment do | |
| sequence(:name) { |n| "Database#{n}" } | |
| sequence(:cp_id) { |n| "#{n}-123"} | |
| content_view | |
| end | |
| end | |
| FactoryGirl.define do | |
| factory :content_view_environment do | |
| sequence(:name) { |n| "Database#{n}" } | |
| sequence(:cp_id) { |n| "#{n}-123"} | |
| association content_view | |
| end | |
| end | |
| FactoryGirl.define do | |
| factory :content_view_environment do | |
| sequence(:name) { |n| "Database#{n}" } | |
| sequence(:cp_id) { |n| "#{n}-123"} | |
| association content_view, :factory => :content_view | |
| end | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment