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
1
Merge Requests
1
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
nexedi
gitlab-ce
Commits
414413c3
Commit
414413c3
authored
Jun 19, 2017
by
Stan Hu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Change a few missing `login_as` to `gitlab_sign_in`
parent
cf3f89fd
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
spec/features/help_pages_spec.rb
spec/features/help_pages_spec.rb
+1
-1
spec/features/milestones/milestones_spec.rb
spec/features/milestones/milestones_spec.rb
+1
-1
spec/features/projects/snippets_spec.rb
spec/features/projects/snippets_spec.rb
+1
-1
No files found.
spec/features/help_pages_spec.rb
View file @
414413c3
...
...
@@ -60,7 +60,7 @@ describe 'Help Pages', feature: true do
allow_any_instance_of
(
ApplicationSetting
).
to
receive
(
:help_text
)
{
"My Custom Text"
}
allow_any_instance_of
(
ApplicationSetting
).
to
receive
(
:help_page_support_url
)
{
"http://example.com/help"
}
login_as
:user
gitlab_sign_in
:user
visit
help_path
end
...
...
spec/features/milestones/milestones_spec.rb
View file @
414413c3
...
...
@@ -39,7 +39,7 @@ describe 'Milestone draggable', feature: true, js: true do
end
it
'assigns issue when it has been dragged to ongoing list'
do
login_as
(
:admin
)
gitlab_sign_in
(
:admin
)
create_and_drag_issue
expect
(
@issue
.
reload
.
assignees
).
not_to
be_empty
...
...
spec/features/projects/snippets_spec.rb
View file @
414413c3
...
...
@@ -29,7 +29,7 @@ describe 'Project snippets', :js, feature: true do
context
'when submitting a note'
do
before
do
login_as
:admin
gitlab_sign_in
:admin
visit
namespace_project_snippet_path
(
project
.
namespace
,
project
,
snippets
[
0
])
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