gitlabhq/spec/lib/shell_spec.rb

18 lines
492 B
Ruby
Raw Normal View History

require 'spec_helper'
describe Gitlab::Shell do
2013-01-28 16:53:01 +01:00
let(:project) { double('Project', id: 7, path: 'diaspora') }
2013-02-11 19:28:27 +01:00
let(:gitlab_shell) { Gitlab::Shell.new }
before do
2013-01-28 16:53:01 +01:00
Project.stub(find: project)
end
it { should respond_to :add_key }
it { should respond_to :remove_key }
it { should respond_to :add_repository }
it { should respond_to :remove_repository }
2013-02-11 19:28:27 +01:00
it { gitlab_shell.url_to_repo('diaspora').should == Gitlab.config.gitlab_shell.ssh_path_prefix + "diaspora.git" }
end