2017-06-07 14:33:50 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2017-06-29 00:13:10 -04:00
|
|
|
describe 'Reportable note on commit', :js do
|
2017-06-07 14:33:50 -04:00
|
|
|
include RepoHelpers
|
|
|
|
|
|
|
|
let(:user) { create(:user) }
|
2017-08-01 14:51:52 -04:00
|
|
|
let(:project) { create(:project, :repository) }
|
2017-06-07 14:33:50 -04:00
|
|
|
|
|
|
|
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
|
|
|
end
|
|
|
|
|
|
|
|
context 'a normal note' do
|
|
|
|
let!(:note) { create(:note_on_commit, commit_id: sample_commit.id, project: project) }
|
|
|
|
|
|
|
|
before do
|
2017-07-06 12:20:50 -04:00
|
|
|
visit project_commit_path(project, sample_commit.id)
|
2017-06-07 14:33:50 -04:00
|
|
|
end
|
|
|
|
|
2017-08-12 16:02:45 -04:00
|
|
|
it_behaves_like 'reportable note', 'commit'
|
2017-06-07 14:33:50 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'a diff note' do
|
|
|
|
let!(:note) { create(:diff_note_on_commit, commit_id: sample_commit.id, project: project) }
|
|
|
|
|
|
|
|
before do
|
2017-07-06 12:20:50 -04:00
|
|
|
visit project_commit_path(project, sample_commit.id)
|
2017-06-07 14:33:50 -04:00
|
|
|
end
|
|
|
|
|
2017-08-12 16:02:45 -04:00
|
|
|
it_behaves_like 'reportable note', 'commit'
|
2017-06-07 14:33:50 -04:00
|
|
|
end
|
|
|
|
end
|