Sha256: 672fafce91a5d17a527794a76fe8f2c611631ef4e04d0ac6ce9677872ef55f12

Contents?: true

Size: 796 Bytes

Versions: 4

Compression:

Stored size: 796 Bytes

Contents

require 'cocoapods'
require File.join(File.dirname(__FILE__), '../../lib/cocoapods_plugin')
require File.join(File.dirname(__FILE__), '..', 'spec_helper')

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::HooksContext.generate(sandbox, [])
      Pod::HooksManager.run(:post_install, context, {'slather' => nil})
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
slather-1.8 spec/slather/cocoapods_plugin_spec.rb
slather-1.7.1 spec/slather/cocoapods_plugin_spec.rb
slather-1.7.0 spec/slather/cocoapods_plugin_spec.rb
slather-1.6.0 spec/slather/cocoapods_plugin_spec.rb