Sha256: 616200dd90fc8da3bceec75195becd6d5dd3dfd7981661f93418d227f9dafa6e
Contents?: true
Size: 662 Bytes
Versions: 46
Compression:
Stored size: 662 Bytes
Contents
require "spec_helper" describe "bundle install with deprecated features" do before :each do in_app_root end it "reports that lib is an invalid option" do gemfile <<-G gem "rack", :lib => "rack" G bundle :install out.should =~ /You passed :lib as an option for gem 'rack', but it is invalid/ end end describe "bundle install to a dead symlink" do before do in_app_root do `ln -s /tmp/idontexist bundle` end end it "reports the symlink is dead" do gemfile <<-G source "file://#{gem_repo1}" gem "rack" G bundle "install --path bundle" out.should =~ /invalid symlink/ end end
Version data entries
46 entries across 46 versions & 4 rubygems