Sha256: 59585257d32a823208c429afcd44dd57628ca00fe497d24606702f8f32a2bac1
Contents?: true
Size: 1.37 KB
Versions: 77
Compression:
Stored size: 1.37 KB
Contents
require 'spec_helper' require 'specinfra/helper/detect_os/darwin' describe Specinfra::Helper::DetectOs::Darwin do darwin = Specinfra::Helper::DetectOs::Darwin.new(:exec) it 'Should return darwin 13.4.0 when Mac OS X 10.9.5 (Mavericks) is installed.' do allow(darwin).to receive(:run_command) { CommandResult.new(:stdout => 'Darwin 13.4.0', :exit_status => 0) } expect(darwin.detect).to include( :family => 'darwin', :release => '13.4.0' ) end it 'Should return darwin 12.6.0 when Mac OS X 10.8.5 (Mountain Lion) is installed.' do allow(darwin).to receive(:run_command) { CommandResult.new(:stdout => 'Darwin 12.6.0', :exit_status => 0) } expect(darwin.detect).to include( :family => 'darwin', :release => '12.6.0' ) end it 'Should return darwin 11.4.2 when Mac OS X 10.7.5 (Lion) is installed.' do allow(darwin).to receive(:run_command) { CommandResult.new(:stdout => 'Darwin 11.4.2', :exit_status => 0) } expect(darwin.detect).to include( :family => 'darwin', :release => '11.4.2' ) end it 'Should return darwin nil when Darwin FooBar is installed.' do allow(darwin).to receive(:run_command) { CommandResult.new(:stdout => 'Darwin FooBar', :exit_status => 0) } expect(darwin.detect).to include( :family => 'darwin', :release => nil ) end end
Version data entries
77 entries across 77 versions & 3 rubygems