Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Lopez <james@jameslopez.es>2016-02-17 20:05:40 +0300
committerJames Lopez <james@jameslopez.es>2016-02-17 20:05:40 +0300
commit4b650fac76c35bd8666d7a53ad6ff02f256ad64d (patch)
treecda2723be0e843c7cbb8c6cc3d152b341a02b60a /features/steps/project/fork.rb
parentdd68d100e659d315ce6b21dac914beeda0fd1d4c (diff)
updated fix based on MR feedback
Diffstat (limited to 'features/steps/project/fork.rb')
-rw-r--r--features/steps/project/fork.rb5
1 files changed, 0 insertions, 5 deletions
diff --git a/features/steps/project/fork.rb b/features/steps/project/fork.rb
index 7e5160bae2f..527f7853da9 100644
--- a/features/steps/project/fork.rb
+++ b/features/steps/project/fork.rb
@@ -68,11 +68,6 @@ class Spinach::Features::ProjectFork < Spinach::FeatureSteps
project.save!
end
- step 'I should not see the invalid fork listed' do
- project = @user.fork_of(@project)
- expect(page).not_to have_content("#{project.namespace.human_name} / #{project.name}")
- end
-
step 'There is an existent fork of the "Shop" project' do
user = create(:user, name: 'Mike')
@forked_project = Projects::ForkService.new(@project, user).execute