summaryrefslogtreecommitdiff
path: root/spec/other/show_spec.rb
diff options
context:
space:
mode:
authorTerence Lee <hone02@gmail.com>2010-10-09 01:28:37 -0500
committerTerence Lee <hone02@gmail.com>2010-10-09 01:42:51 -0500
commit265f3b06c9f148a01ecea767aa328406dc84fa45 (patch)
tree5437313afcb97862d6b7e74e2e67b65968366589 /spec/other/show_spec.rb
parentfc3eae577511e66f36b69570f2762144ce3cfb31 (diff)
downloadbundler-265f3b06c9f148a01ecea767aa328406dc84fa45.tar.gz
remove bundle :lock
Diffstat (limited to 'spec/other/show_spec.rb')
-rw-r--r--spec/other/show_spec.rb17
1 files changed, 0 insertions, 17 deletions
diff --git a/spec/other/show_spec.rb b/spec/other/show_spec.rb
index 4655d4fc43..c8f2b51839 100644
--- a/spec/other/show_spec.rb
+++ b/spec/other/show_spec.rb
@@ -38,23 +38,6 @@ describe "bundle show" do
bundle "show missing"
out.should =~ /could not find gem 'missing'/i
end
-
- describe "while locked" do
- before :each do
- bundle :lock
- end
-
- it "prints path if gem exists in bundle" do
- bundle "show rails"
- out.should == default_bundle_path('gems', 'rails-2.3.2').to_s
- end
-
- it "complains if gem not in bundle" do
- bundle "show missing"
- out.should =~ /could not find gem 'missing'/i
- end
- end
-
end
describe "bundle show with a git repo" do