Sha256: bbf0f0035092fcc265c70fe9cee22169b39ec320f0f10932d12cf4e2850798ba

Contents?: true

Size: 1.98 KB

Versions: 2

Compression:

Stored size: 1.98 KB

Contents

require File.expand_path('../../../spec_helper', __FILE__)

module Pod
  describe GDSpecBuilder do
    def compare_attributes(first_spec, second_spec, attribute_name)
      first_spec.attributes_hash[attribute_name].should ==
        second_spec.attributes_hash[attribute_name]

      %w(ios osx).each do |platform|
        first_spec.attributes_hash[platform][attribute_name].should ==
          second_spec.attributes_hash[platform][attribute_name]
      end
    end

    def specification_from_builder(builder)
      spec_string = builder.spec_metadata
      spec_string += builder.spec_platform(Platform.ios)
      spec_string += builder.spec_platform(Platform.osx)
      spec_string += builder.spec_close

      return Specification.from_string(spec_string, 'Builder.podspec')
    end

    describe 'Preserve attributes from source specification' do
      before do
        @spec = Specification.from_file('spec/fixtures/Builder.podspec')
        @builder = GDSpecBuilder.new(@spec, nil, false, nil, nil)
      end

      it "preserves platform.frameworks" do
        spec = specification_from_builder(@builder)
        compare_attributes(spec, @spec, 'frameworks')
      end

      it "preserves platform.weak_frameworks" do
        spec = specification_from_builder(@builder)
        compare_attributes(spec, @spec, 'weak_frameworks')
      end

      it "preserves platform.libraries" do
        spec = specification_from_builder(@builder)
        compare_attributes(spec, @spec, 'libraries')
      end

      it "preserves platform.requires_arc" do
        spec = specification_from_builder(@builder)
        compare_attributes(spec, @spec, 'requires_arc')
      end

      it "preserves platform.deployment_target" do
        spec = specification_from_builder(@builder)
        compare_attributes(spec, @spec, 'deployment_target')
      end

      it "preserves platform.xcconfig" do
        spec = specification_from_builder(@builder)
        compare_attributes(spec, @spec, 'xcconfig')
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
cocoapods-gd-0.0.3 spec/unit/specification/spec_builder_spec.rb
cocoapods-gd-0.0.2 spec/unit/specification/spec_builder_spec.rb