Welcome to mirror list, hosted at ThFree Co, Russian Federation.

due_quick_action_shared_examples.rb « issue « quick_actions « shared_examples « support « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ae78cd86cd580732feff40144e64ad02bff5956a (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
26
27
28
29
30
31
32
33
34
35
# frozen_string_literal: true

shared_examples 'due quick action' do
  context 'due quick action available and date can be added' do
    it 'sets the due date accordingly' do
      add_note('/due 2016-08-28')

      expect(page).not_to have_content '/due 2016-08-28'
      expect(page).to have_content 'Commands applied'

      visit project_issue_path(project, issue)

      page.within '.due_date' do
        expect(page).to have_content 'Aug 28, 2016'
      end
    end
  end

  context 'due quick action not available' do
    let(:guest) { create(:user) }
    before do
      project.add_guest(guest)
      gitlab_sign_out
      sign_in(guest)
      visit project_issue_path(project, issue)
    end

    it 'does not set the due date' do
      add_note('/due 2016-08-28')

      expect(page).not_to have_content 'Commands applied'
      expect(page).not_to have_content '/due 2016-08-28'
    end
  end
end