mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-10 05:06:46 +10:00
16 lines
265 B
Ruby
16 lines
265 B
Ruby
module SharedIssuable
|
|
include Spinach::DSL
|
|
|
|
def edit_issuable
|
|
find(:css, '.issuable-edit').click
|
|
end
|
|
|
|
step 'I click link "Edit" for the merge request' do
|
|
edit_issuable
|
|
end
|
|
|
|
step 'I click link "Edit" for the issue' do
|
|
edit_issuable
|
|
end
|
|
end
|