diff options
author | Robert Speicher <rspeicher@gmail.com> | 2012-08-28 21:13:22 -0400 |
---|---|---|
committer | Robert Speicher <rspeicher@gmail.com> | 2012-08-28 21:22:49 -0400 |
commit | a3a63eeb92f5cc660dc3f03e2d7249e4b5f04acf (patch) | |
tree | f8a74fe256a7d0da86b39735e05555f844bba396 /features | |
parent | a39cfb54616fe156ba43ac3df2b771c3a11d2879 (diff) | |
download | gitlab-ce-a3a63eeb92f5cc660dc3f03e2d7249e4b5f04acf.tar.gz |
Remove all instances to 'gitlabhq_x' seed repositories from specs and features
We now need only one seed repo! Also cleans up the seeding script.
Diffstat (limited to 'features')
-rw-r--r-- | features/step_definitions/dashboard_steps.rb | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/features/step_definitions/dashboard_steps.rb b/features/step_definitions/dashboard_steps.rb index d910ec90d19..a4edd224dc0 100644 --- a/features/step_definitions/dashboard_steps.rb +++ b/features/step_definitions/dashboard_steps.rb @@ -106,13 +106,9 @@ Given /^I have assigned issues$/ do end Given /^I have authored merge requests$/ do - project1 = Factory :project, - :path => "gitlabhq_1", - :code => "gitlabhq_1" + project1 = Factory :project - project2 = Factory :project, - :path => "gitlabhq_2", - :code => "gitlabhq_2" + project2 = Factory :project project1.add_access(@user, :read, :write) project2.add_access(@user, :read, :write) |