diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-04-03 21:09:07 +0300 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-04-03 21:09:07 +0300 |
commit | e91ff84df72a76b91bb8c24a6e677cdca98120de (patch) | |
tree | 71997153a4063f957da502bc87dc4e962bd2f960 /spec/lib/shell_spec.rb | |
parent | 3011ac4150e355da9e5956cb223d19e18425e0eb (diff) | |
download | gitlab-ce-e91ff84df72a76b91bb8c24a6e677cdca98120de.tar.gz |
keep same dir structure for specs as in lib/
Diffstat (limited to 'spec/lib/shell_spec.rb')
-rw-r--r-- | spec/lib/shell_spec.rb | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/spec/lib/shell_spec.rb b/spec/lib/shell_spec.rb deleted file mode 100644 index 3c04f4bbeb6..00000000000 --- a/spec/lib/shell_spec.rb +++ /dev/null @@ -1,17 +0,0 @@ -require 'spec_helper' - -describe Gitlab::Shell do - let(:project) { double('Project', id: 7, path: 'diaspora') } - let(:gitlab_shell) { Gitlab::Shell.new } - - before do - 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 } - - it { gitlab_shell.url_to_repo('diaspora').should == Gitlab.config.gitlab_shell.ssh_path_prefix + "diaspora.git" } -end |