Sha256: 7186cd8e8a1e8d92bed9baa6636ae7210271c859207d99b5870aa474f34cced5
Contents?: true
Size: 692 Bytes
Versions: 19
Compression:
Stored size: 692 Bytes
Contents
require 'spec_helper' require 'bundler/definition' describe Bundler::Definition do before do allow(Bundler).to receive(:settings){ Bundler::Settings.new(".") } allow(Bundler).to receive(:default_gemfile){ Pathname.new("Gemfile") } end describe "#lock" do context "when it's not possible to write to the file" do subject{ Bundler::Definition.new(nil, [], Bundler::SourceList.new, []) } it "raises an InstallError with explanation" do expect(File).to receive(:open).with("Gemfile.lock", "wb"). and_raise(Errno::EACCES) expect{ subject.lock("Gemfile.lock") }. to raise_error(Bundler::InstallError) end end end end
Version data entries
19 entries across 19 versions & 1 rubygems