diff options
author | Valery Sizov <valery@gitlab.com> | 2016-06-23 09:35:51 +0000 |
---|---|---|
committer | Valery Sizov <valery@gitlab.com> | 2016-06-23 09:35:51 +0000 |
commit | f2325a45c1ce4e6685f61a6e5d1ef0f351e34a18 (patch) | |
tree | c8aae6ffcab759a07102913bfafa705d62fba223 /spec/gitlab_shell_spec.rb | |
parent | f9e59b36016c3d696b4e798c0642874e2f8f76ec (diff) | |
parent | 2467697d81e4ab9e9d770d55d8cb33cb5779db22 (diff) | |
download | gitlab-shell-f2325a45c1ce4e6685f61a6e5d1ef0f351e34a18.tar.gz |
Merge branch 'simplify-access-status' into 'master'
Simplify the GitAccessStatus class
Make the optional 'message' argument required. Remove unused 'to_json'
method.
See merge request !65
Diffstat (limited to 'spec/gitlab_shell_spec.rb')
-rw-r--r-- | spec/gitlab_shell_spec.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/gitlab_shell_spec.rb b/spec/gitlab_shell_spec.rb index dd5cfb2..3be1671 100644 --- a/spec/gitlab_shell_spec.rb +++ b/spec/gitlab_shell_spec.rb @@ -22,7 +22,7 @@ describe GitlabShell do let(:api) do double(GitlabNet).tap do |api| api.stub(discover: { 'name' => 'John Doe' }) - api.stub(check_access: GitAccessStatus.new(true)) + api.stub(check_access: GitAccessStatus.new(true, 'ok')) end end @@ -230,7 +230,7 @@ describe GitlabShell do end it "should disallow access and log the attempt if check_access returns false status" do - api.stub(check_access: GitAccessStatus.new(false)) + api.stub(check_access: GitAccessStatus.new(false, 'denied')) message = "gitlab-shell: Access denied for git command <git-upload-pack gitlab-ci.git> " message << "by user with key #{key_id}." $logger.should_receive(:warn).with(message) |