debian-mirror-gitlab/spec/lib/gitlab/gitaly_client/notifications_spec.rb
2017-08-17 22:00:37 +05:30

16 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