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
854ddd4b
Commit
854ddd4b
authored
Jan 07, 2020
by
Walmyr Lima
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Deletes unused page object and its autoload
parent
4d5fb4ad
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
37 deletions
+0
-37
qa/qa/ee.rb
qa/qa/ee.rb
+0
-1
qa/qa/ee/page/group/epic/edit.rb
qa/qa/ee/page/group/epic/edit.rb
+0
-36
No files found.
qa/qa/ee.rb
View file @
854ddd4b
...
...
@@ -160,7 +160,6 @@ module QA
module
Epic
autoload
:Index
,
'qa/ee/page/group/epic/index'
autoload
:Show
,
'qa/ee/page/group/epic/show'
autoload
:Edit
,
'qa/ee/page/group/epic/edit'
end
module
Secure
...
...
qa/qa/ee/page/group/epic/edit.rb
deleted
100644 → 0
View file @
4d5fb4ad
# frozen_string_literal: true
module
QA
module
EE
module
Page
module
Group
module
Epic
class
Edit
<
QA
::
Page
::
Base
include
QA
::
Page
::
Component
::
Issuable
::
Common
def
set_title
(
title
)
fill_element
:title_input
,
title
end
def
set_description
(
description
)
fill_element
:description_textarea
,
description
end
def
save_changes
click_element
:save_button
wait
(
max:
5
,
interval:
1
,
reload:
false
)
do
has_no_element?
(
:save_button
)
end
end
def
delete_epic
page
.
accept_alert
(
"Epic will be removed! Are you sure?"
)
do
click_element
:delete_button
end
end
end
end
end
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