From a8b4ab9da4b8d6338ab035c24f0be3d1dea556bb Mon Sep 17 00:00:00 2001 From: Robert Speicher Date: Mon, 16 Jan 2017 23:06:18 -0500 Subject: [PATCH] Add a `:repository` trait to the `:empty_project` factory Right now this is a no-op. We're going to add it as a trait argument to all existing usages of the `:project` factory, so that later we can flip `:empty_project` to just be `:project`, forcing developers to opt-in to the slower option when their tests truly require it. --- spec/factories/projects.rb | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/spec/factories/projects.rb b/spec/factories/projects.rb index 1cdbe4fc9a5..992580a6b34 100644 --- a/spec/factories/projects.rb +++ b/spec/factories/projects.rb @@ -32,6 +32,10 @@ FactoryGirl.define do request_access_enabled true end + trait :repository do + # no-op... for now! + end + trait :empty_repo do after(:create) do |project| project.create_repository