39 lines
829 B
Ruby
39 lines
829 B
Ruby
|
# == Schema Information
|
||
|
#
|
||
|
# Table name: runners
|
||
|
#
|
||
|
# id :integer not null, primary key
|
||
|
# token :string(255)
|
||
|
# created_at :datetime
|
||
|
# updated_at :datetime
|
||
|
# description :string(255)
|
||
|
# contacted_at :datetime
|
||
|
# active :boolean default(TRUE), not null
|
||
|
# is_shared :boolean default(FALSE)
|
||
|
# name :string(255)
|
||
|
# version :string(255)
|
||
|
# revision :string(255)
|
||
|
# platform :string(255)
|
||
|
# architecture :string(255)
|
||
|
#
|
||
|
|
||
|
# Read about factories at https://github.com/thoughtbot/factory_girl
|
||
|
|
||
|
FactoryGirl.define do
|
||
|
factory :runner do
|
||
|
sequence :description do |n|
|
||
|
"My runner#{n}"
|
||
|
end
|
||
|
|
||
|
platform "darwin"
|
||
|
|
||
|
factory :shared_runner do
|
||
|
is_shared true
|
||
|
end
|
||
|
|
||
|
factory :specific_runner do
|
||
|
is_shared false
|
||
|
end
|
||
|
end
|
||
|
end
|