summaryrefslogtreecommitdiff
path: root/spec/support/shared_examples/quick_actions/issue/remove_due_date_quick_action_shared_examples.rb
blob: 5904164fcfc6707fba806ea20b29533a9e3d3c75 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# frozen_string_literal: true

shared_examples 'remove_due_date action not available' do
  it 'does not remove the due date' do
    add_note("/remove_due_date")

    expect(page).not_to have_content 'Commands applied'
    expect(page).not_to have_content '/remove_due_date'
  end
end

shared_examples 'remove_due_date action available and due date can be removed' do
  it 'removes the due date accordingly' do
    add_note('/remove_due_date')

    expect(page).not_to have_content '/remove_due_date'
    expect(page).to have_content 'Commands applied'

    visit project_issue_path(project, issue)

    page.within '.due_date' do
      expect(page).to have_content 'No due date'
    end
  end
end