2017-06-07 14:33:50 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2017-06-29 00:13:10 -04:00
|
|
|
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
|
|
|
|
project.add_master(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
|