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

abuse_report_shared_examples.rb « features « shared_examples « support « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ea9b4e9f4b219cf6e0b19755d11e1bd0d04e6036 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# frozen_string_literal: true

RSpec.shared_examples 'reports the user with an abuse category' do
  it 'creates abuse report' do
    click_button 'Report abuse'
    choose "They're posting spam."
    click_button 'Next'

    page.attach_file('spec/fixtures/dk.png') do
      click_button "Choose file"
    end

    fill_in 'abuse_report_message', with: 'This user sends spam'
    click_button 'Send report'

    expect(page).to have_content 'Thank you for your report'
  end
end