2019-07-25 01:24:42 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-06-07 14:33:50 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-06-03 14:08:28 -04:00
|
|
|
RSpec.describe 'Reportable note on issue', :js do
|
2017-06-07 14:33:50 -04:00
|
|
|
let(:user) { create(:user) }
|
2017-08-02 15:55:11 -04:00
|
|
|
let(:project) { create(:project) }
|
2017-06-07 14:33:50 -04:00
|
|
|
let(:issue) { create(:issue, project: project) }
|
|
|
|
let!(:note) { create(:note_on_issue, noteable: issue, project: project) }
|
|
|
|
|
|
|
|
before do
|
2018-07-11 10:36:08 -04:00
|
|
|
project.add_maintainer(user)
|
2017-06-21 19:44:10 -04:00
|
|
|
sign_in(user)
|
2017-06-07 14:33:50 -04:00
|
|
|
|
2017-07-06 12:20:50 -04:00
|
|
|
visit project_issue_path(project, issue)
|
2017-06-07 14:33:50 -04:00
|
|
|
end
|
|
|
|
|
2017-08-12 16:02:45 -04:00
|
|
|
it_behaves_like 'reportable note', 'issue'
|
2017-06-07 14:33:50 -04:00
|
|
|
end
|