BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
f9e9d5d5
Commit
f9e9d5d5
authored
Feb 01, 2018
by
Robert Speicher
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'qa-160' into 'master'
Add a QA scenario for creating an issue Closes gitlab-qa#160 See merge request gitlab-org/gitlab-ce!16802
parents
b00c48f4
787ac467
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
2 deletions
+18
-2
issue.rb
qa/qa/factory/resource/issue.rb
+0
-2
create_issue_spec.rb
qa/qa/specs/features/project/create_issue_spec.rb
+18
-0
No files found.
qa/qa/factory/resource/issue.rb
View file @
f9e9d5d5
require
'securerandom'
module
QA
module
Factory
module
Resource
...
...
qa/qa/specs/features/project/create_issue_spec.rb
0 → 100644
View file @
f9e9d5d5
module
QA
feature
'creates issue'
,
:core
do
let
(
:issue_title
)
{
'issue title'
}
scenario
'user creates issue'
do
Runtime
::
Browser
.
visit
(
:gitlab
,
Page
::
Main
::
Login
)
Page
::
Main
::
Login
.
act
{
sign_in_using_credentials
}
Factory
::
Resource
::
Issue
.
fabricate!
do
|
issue
|
issue
.
title
=
issue_title
end
Page
::
Menu
::
Side
.
act
{
click_issues
}
expect
(
page
).
to
have_content
(
issue_title
)
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