27 lines
665 B
Ruby
27 lines
665 B
Ruby
require 'spec_helper'
|
|
|
|
describe Notes::PostProcessService, services: true do
|
|
let(:project) { create(:empty_project) }
|
|
let(:issue) { create(:issue, project: project) }
|
|
let(:user) { create(:user) }
|
|
|
|
describe :execute do
|
|
before do
|
|
project.team << [user, :master]
|
|
note_opts = {
|
|
note: 'Awesome comment',
|
|
noteable_type: 'Issue',
|
|
noteable_id: issue.id
|
|
}
|
|
|
|
@note = Notes::CreateService.new(project, user, note_opts).execute
|
|
end
|
|
|
|
it do
|
|
expect(project).to receive(:execute_hooks)
|
|
expect(project).to receive(:execute_services)
|
|
|
|
Notes::PostProcessService.new(@note).execute
|
|
end
|
|
end
|
|
end
|