Sha256: 1f20b7376cde15e8299ba939495c455bd76897167936ef75030a54fb17b4bf1b
Contents?: true
Size: 536 Bytes
Versions: 9
Compression:
Stored size: 536 Bytes
Contents
require 'spec_helper' require 'appraisal/appraisal_file' # Requiring this to make the test pass on Rubinius 2.2.5 # https://github.com/rubinius/rubinius/issues/2934 require 'rspec/matchers/built_in/raise_error' describe Appraisal::AppraisalFile do it "complains when no Appraisals file is found" do allow(File).to receive(:exist?).with(/Gemfile/).and_return(true) allow(File).to receive(:exist?).with("Appraisals").and_return(false) expect { described_class.new }.to raise_error(Appraisal::AppraisalsNotFound) end end
Version data entries
9 entries across 9 versions & 3 rubygems