Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Jérome Perrin
gitlab-ce
Commits
5b5912f9
Commit
5b5912f9
authored
Sep 30, 2014
by
Robert Schilling
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #7889 from cirosantilli/rm-def-project
Remove def project from tests that inherit it.
parents
efcac2be
a92f48f6
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
0 additions
and
24 deletions
+0
-24
features/steps/dashboard/dashboard.rb
features/steps/dashboard/dashboard.rb
+0
-4
features/steps/project/forked_merge_requests.rb
features/steps/project/forked_merge_requests.rb
+0
-4
features/steps/project/issues.rb
features/steps/project/issues.rb
+0
-4
features/steps/project/merge_requests.rb
features/steps/project/merge_requests.rb
+0
-4
features/steps/project/snippets.rb
features/steps/project/snippets.rb
+0
-4
features/steps/search.rb
features/steps/search.rb
+0
-4
No files found.
features/steps/dashboard/dashboard.rb
View file @
5b5912f9
...
@@ -82,8 +82,4 @@ class Spinach::Features::Dashboard < Spinach::FeatureSteps
...
@@ -82,8 +82,4 @@ class Spinach::Features::Dashboard < Spinach::FeatureSteps
step
'I should see 1 project at group list'
do
step
'I should see 1 project at group list'
do
find
(
'span.last_activity/span'
).
should
have_content
(
'1'
)
find
(
'span.last_activity/span'
).
should
have_content
(
'1'
)
end
end
def
project
@project
||=
Project
.
find_by
(
name:
"Shop"
)
end
end
end
features/steps/project/forked_merge_requests.rb
View file @
5b5912f9
...
@@ -128,10 +128,6 @@ class Spinach::Features::ProjectForkedMergeRequests < Spinach::FeatureSteps
...
@@ -128,10 +128,6 @@ class Spinach::Features::ProjectForkedMergeRequests < Spinach::FeatureSteps
page
.
should
have_select
(
"merge_request_target_project_id"
,
selected:
project
.
path_with_namespace
)
page
.
should
have_select
(
"merge_request_target_project_id"
,
selected:
project
.
path_with_namespace
)
end
end
def
project
@project
||=
Project
.
find_by!
(
name:
"Shop"
)
end
# Verify a link is generated against the correct project
# Verify a link is generated against the correct project
def
verify_commit_link
(
container_div
,
container_project
)
def
verify_commit_link
(
container_div
,
container_project
)
# This should force a wait for the javascript to execute
# This should force a wait for the javascript to execute
...
...
features/steps/project/issues.rb
View file @
5b5912f9
...
@@ -236,8 +236,4 @@ class Spinach::Features::ProjectIssues < Spinach::FeatureSteps
...
@@ -236,8 +236,4 @@ class Spinach::Features::ProjectIssues < Spinach::FeatureSteps
# make sure AJAX request finished
# make sure AJAX request finished
URI
.
parse
(
current_url
).
request_uri
==
project_issues_path
(
project
,
issue_search:
text
)
URI
.
parse
(
current_url
).
request_uri
==
project_issues_path
(
project
,
issue_search:
text
)
end
end
def
project
@project
||=
Project
.
find_by
(
name:
'Shop'
)
end
end
end
features/steps/project/merge_requests.rb
View file @
5b5912f9
...
@@ -261,10 +261,6 @@ class Spinach::Features::ProjectMergeRequests < Spinach::FeatureSteps
...
@@ -261,10 +261,6 @@ class Spinach::Features::ProjectMergeRequests < Spinach::FeatureSteps
end
end
end
end
def
project
@project
||=
Project
.
find_by!
(
name:
"Shop"
)
end
def
merge_request
def
merge_request
@merge_request
||=
MergeRequest
.
find_by!
(
title:
"Bug NS-05"
)
@merge_request
||=
MergeRequest
.
find_by!
(
title:
"Bug NS-05"
)
end
end
...
...
features/steps/project/snippets.rb
View file @
5b5912f9
...
@@ -89,10 +89,6 @@ class Spinach::Features::ProjectSnippets < Spinach::FeatureSteps
...
@@ -89,10 +89,6 @@ class Spinach::Features::ProjectSnippets < Spinach::FeatureSteps
visit
project_snippet_path
(
project
,
project_snippet
)
visit
project_snippet_path
(
project
,
project_snippet
)
end
end
def
project
@project
||=
Project
.
find_by!
(
name:
"Shop"
)
end
def
project_snippet
def
project_snippet
@project_snippet
||=
ProjectSnippet
.
find_by!
(
title:
"Snippet one"
)
@project_snippet
||=
ProjectSnippet
.
find_by!
(
title:
"Snippet one"
)
end
end
...
...
features/steps/search.rb
View file @
5b5912f9
...
@@ -66,8 +66,4 @@ class Spinach::Features::Search < Spinach::FeatureSteps
...
@@ -66,8 +66,4 @@ class Spinach::Features::Search < Spinach::FeatureSteps
step
'I should not see "Bar" link'
do
step
'I should not see "Bar" link'
do
page
.
should_not
have_link
"Bar"
page
.
should_not
have_link
"Bar"
end
end
def
project
@project
||=
Project
.
find_by
(
name:
"Shop"
)
end
end
end
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment