diff options
| author | Phil Hughes <me@iamphill.com> | 2016-02-22 17:37:26 +0000 |
|---|---|---|
| committer | Phil Hughes <me@iamphill.com> | 2016-02-22 17:37:26 +0000 |
| commit | 62f4a9de1997fb1281e4d73753d157d2e29940c4 (patch) | |
| tree | c6c1fa4b4d9a0e768f625db7021d4a2cd9c13874 /features/steps/project | |
| parent | 5803a5308f5a7a84cc84dd0a7d8a89565bae0717 (diff) | |
| download | gitlab-ce-62f4a9de1997fb1281e4d73753d157d2e29940c4.tar.gz | |
Users don't get instructions to push to other users empty projects
Fixes #12518
Diffstat (limited to 'features/steps/project')
| -rw-r--r-- | features/steps/project/project.rb | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/features/steps/project/project.rb b/features/steps/project/project.rb index 37bf52b4a95..ef185861e00 100644 --- a/features/steps/project/project.rb +++ b/features/steps/project/project.rb @@ -144,4 +144,14 @@ class Spinach::Features::Project < Spinach::FeatureSteps expect(page).to have_content 'Notification settings saved' end end + + step 'I create bare repo' do + click_link 'Create empty bare repository' + end + + step 'I should see command line instructions' do + page.within ".empty_wrapper" do + expect(page).to have_content("Command line instructions") + end + end end |
