gitlab-org--gitlab-foss/features/steps/shared/issuable.rb
Dmitriy Zaporozhets 36acf5b293 Revert "Fix tests"
This reverts commit 1e45ba7f16.
2015-01-14 17:22:48 -08:00

15 lines
264 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