17 lines
486 B
Ruby
17 lines
486 B
Ruby
|
require 'spec_helper'
|
||
|
|
||
|
describe Gitlab::GitalyClient::Notifications do
|
||
|
describe '#post_receive' do
|
||
|
let(:project) { create(:empty_project) }
|
||
|
let(:repo_path) { project.repository.path_to_repo }
|
||
|
subject { described_class.new(project.repository) }
|
||
|
|
||
|
it 'sends a post_receive message' do
|
||
|
expect_any_instance_of(Gitaly::Notifications::Stub).
|
||
|
to receive(:post_receive).with(gitaly_request_with_repo_path(repo_path))
|
||
|
|
||
|
subject.post_receive
|
||
|
end
|
||
|
end
|
||
|
end
|