Sha256: d78e6a4a8a6dbfcb582645167548041ed13d661efeaa12b7bdf9361fc28f525d
Contents?: true
Size: 651 Bytes
Versions: 60
Compression:
Stored size: 651 Bytes
Contents
require "spec_helper" describe "bundle install for the first time with v1.0" do before :each do in_app_root gemfile <<-G source "file://#{gem_repo1}" gem "rack" G end it "removes lockfiles in 0.9 YAML format" do File.open("Gemfile.lock", "w"){|f| YAML.dump({}, f) } bundle :install expect(File.read("Gemfile.lock")).not_to match(/^---/) end it "removes env.rb if it exists" do bundled_app.join(".bundle").mkdir bundled_app.join(".bundle/environment.rb").open("w"){|f| f.write("raise 'nooo'") } bundle :install expect(bundled_app.join(".bundle/environment.rb")).not_to exist end end
Version data entries
60 entries across 60 versions & 2 rubygems