summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/gitaly_client/notifications_spec.rb
blob: e5c9e06a15e95c003d8caeec90568d1c09763ca4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require 'spec_helper'

describe Gitlab::GitalyClient::Notifications do
  describe '#post_receive' do
    let(:project) { create(:empty_project) }
    let(:storage_name) { project.repository_storage }
    let(:relative_path) { project.path_with_namespace + '.git' }
    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_path(storage_name, relative_path))

      subject.post_receive
    end
  end
end