2016-09-24 03:00:46 +00:00
|
|
|
# frozen_string_literal: true
|
2015-12-17 15:45:38 +00:00
|
|
|
FactoryGirl.define do
|
|
|
|
factory :metacode do
|
2016-02-09 05:30:49 +00:00
|
|
|
sequence(:name) { |n| "Cool Metacode ##{n}" }
|
2016-02-26 06:20:14 +00:00
|
|
|
manual_icon 'https://images.com/image.png'
|
|
|
|
aws_icon nil
|
2016-02-09 05:30:49 +00:00
|
|
|
color '#cccccc'
|
2015-12-17 15:45:38 +00:00
|
|
|
end
|
|
|
|
end
|