Skip to content

Instantly share code, notes, and snippets.

@bricker
Forked from chewmanfoo/factory.rb
Last active December 11, 2015 04:09
Show Gist options
  • Save bricker/4542958 to your computer and use it in GitHub Desktop.
Save bricker/4542958 to your computer and use it in GitHub Desktop.
FactoryGirl.define do
factory :application do
name "Cool App"
end
factory :role do
name "Cool Role"
end
factory :environment do
name "Cool Environment"
end
factory :deployment do
application
role
environment
build_number '13.1.144-1'
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment