Sha256: d62df4134ee35472ee6e5017096e7dcdcf5a848a919453dc13898c6b6a03c1ec
Contents?: true
Size: 507 Bytes
Versions: 6
Compression:
Stored size: 507 Bytes
Contents
describe Rake::Funnel::Tasks::MSBuildSupport::BuildTool do before { allow(Rake::Win32).to receive(:windows?).and_return(windows?) } context 'on Windows', platform: :win32 do let(:windows?) { true } it 'should find msbuild.exe' do expect(described_class.find).to match(/msbuild\.exe$/) end end context 'not on Windows' do let(:windows?) { false } it 'should find xbuild' do expect(described_class.find).to eq('xbuild') end end end
Version data entries
6 entries across 6 versions & 1 rubygems