summaryrefslogtreecommitdiff
path: root/spec/factories.rb
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-04-01 14:39:19 +0300
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-04-01 14:39:19 +0300
commit22817398e6c1cf9a479fecd99c55369fd81717cb (patch)
tree6c385da37d215a2d1de9fe25383da996fecc2d55 /spec/factories.rb
parent7bb71bb088e17578482e7f934147b0fd11c7ad0e (diff)
downloadgitlab-ce-22817398e6c1cf9a479fecd99c55369fd81717cb.tar.gz
define TestEnv and keep all global stubs in one place
Diffstat (limited to 'spec/factories.rb')
-rw-r--r--spec/factories.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/factories.rb b/spec/factories.rb
index 41766859468..8f620cd7f79 100644
--- a/spec/factories.rb
+++ b/spec/factories.rb
@@ -25,7 +25,7 @@ FactoryGirl.define do
factory :project do
sequence(:name) { |n| "project#{n}" }
- path { name.downcase.gsub(/\s/, '_') }
+ path { 'gitlabhq' }
creator
end