spec/other/show_spec.rb in bundler-1.0.2 vs spec/other/show_spec.rb in bundler-1.0.3
- old
+ new
@@ -36,26 +36,9 @@
it "complains if gem not in bundle" 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
before :each do
@git = build_git "foo", "1.0"