2015-11-03 11:46:54 +03:00
|
|
|
require 'db/mongo/models/image'
|
|
|
|
|
|
|
|
|
|
FactoryGirl.define do
|
|
|
|
|
factory :image, class: Devops::Model::Image do
|
2018-04-04 22:44:39 +03:00
|
|
|
image_id 'test_image'
|
2015-11-03 11:46:54 +03:00
|
|
|
remote_user 'root'
|
|
|
|
|
name 'my_image'
|
2018-04-04 22:44:39 +03:00
|
|
|
provider 'static'
|
|
|
|
|
provider_account 'account'
|
2015-11-03 11:46:54 +03:00
|
|
|
end
|
|
|
|
|
end
|