Sha256: 2417b8636afb5d4a28455d36ee0c92c2c642fa3540d3df1d38542f6ed92c93b6
Contents?: true
Size: 807 Bytes
Versions: 12
Compression:
Stored size: 807 Bytes
Contents
require 'cocoapods' require File.join(File.dirname(__FILE__), '..', 'spec_helper') require File.join(File.dirname(__FILE__), '../../lib/cocoapods_plugin') describe Slather do describe 'CocoaPods Plugin' do it 'should setup slather for coverage in the Pods project' do mock_project = double(Xcodeproj::Project) allow(Xcodeproj::Project).to receive(:open).and_return(mock_project) expect(mock_project).to receive(:slather_setup_for_coverage) expect(mock_project).to receive(:save) # Execute the post_install hook via CocoaPods sandbox_root = 'Pods' sandbox = Pod::Sandbox.new(sandbox_root) context = Pod::Installer::PostInstallHooksContext.generate(sandbox, []) Pod::HooksManager.run(:post_install, context, {'slather' => nil}) end end end
Version data entries
12 entries across 12 versions & 1 rubygems