spec/factories/spaces_factory.rb in new_cfoundry-4.9.3 vs spec/factories/spaces_factory.rb in new_cfoundry-4.9.4
- old
+ new
@@ -1,9 +1,9 @@
-FactoryGirl.define do
+FactoryBot.define do
factory :space, :class => CFoundry::V2::Space do
sequence(:guid) { |n| "space-guid-#{n}" }
transient do
- client { FactoryGirl.build(:client) }
+ client { FactoryBot.build(:client) }
end
initialize_with { new(guid, client) }
end
end