4af9d592c5
I've followed the [upgrade guide](https://github.com/thoughtbot/factory_bot/blob/4-9-0-stable/UPGRADE_FROM_FACTORY_GIRL.md) and ran these two commands: ``` grep -e FactoryGirl **/*.rake **/*.rb -s -l | xargs sed -i "" "s|FactoryGirl|FactoryBot|" grep -e factory_girl **/*.rake **/*.rb -s -l | xargs sed -i "" "s|factory_girl|factory_bot|" ``` Signed-off-by: Rémy Coutable <remy@rymai.me>
35 lines
621 B
Ruby
35 lines
621 B
Ruby
FactoryBot.define do
|
|
factory :cluster_applications_ingress, class: Clusters::Applications::Ingress do
|
|
cluster factory: %i(cluster provided_by_gcp)
|
|
|
|
trait :not_installable do
|
|
status(-2)
|
|
end
|
|
|
|
trait :installable do
|
|
status 0
|
|
end
|
|
|
|
trait :scheduled do
|
|
status 1
|
|
end
|
|
|
|
trait :installing do
|
|
status 2
|
|
end
|
|
|
|
trait :installed do
|
|
status 3
|
|
end
|
|
|
|
trait :errored do
|
|
status(-1)
|
|
status_reason 'something went wrong'
|
|
end
|
|
|
|
trait :timeouted do
|
|
installing
|
|
updated_at ClusterWaitForAppInstallationWorker::TIMEOUT.ago
|
|
end
|
|
end
|
|
end
|