summaryrefslogtreecommitdiff
path: root/features/steps/shared/issuable.rb
blob: 41db2612f2623f75147e4e8fc98c5cc85c0589f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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