2012-09-07 01:16:29 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2013-02-05 05:47:50 -05:00
|
|
|
describe Gitlab::Shell do
|
2013-01-28 10:53:01 -05:00
|
|
|
let(:project) { double('Project', id: 7, path: 'diaspora') }
|
2013-02-11 13:28:27 -05:00
|
|
|
let(:gitlab_shell) { Gitlab::Shell.new }
|
2012-09-07 01:16:29 -04:00
|
|
|
|
|
|
|
before do
|
2013-01-28 10:53:01 -05:00
|
|
|
Project.stub(find: project)
|
2012-09-07 01:16:29 -04:00
|
|
|
end
|
|
|
|
|
2013-02-05 05:47:50 -05:00
|
|
|
it { should respond_to :add_key }
|
2012-09-07 01:16:29 -04:00
|
|
|
it { should respond_to :remove_key }
|
2013-02-05 03:15:49 -05:00
|
|
|
it { should respond_to :add_repository }
|
2012-09-07 01:16:29 -04:00
|
|
|
it { should respond_to :remove_repository }
|
|
|
|
|
2013-02-11 13:28:27 -05:00
|
|
|
it { gitlab_shell.url_to_repo('diaspora').should == Gitlab.config.gitlab_shell.ssh_path_prefix + "diaspora.git" }
|
2012-09-07 01:16:29 -04:00
|
|
|
end
|