Sha256: 1080b40621813f09ea8ff52cf9915e9dd6b5bfb2846c27a9eb8a30598aab6325

Contents?: true

Size: 1.26 KB

Versions: 1

Compression:

Stored size: 1.26 KB

Contents

require 'spec_helper'

module LicenseFinder
  describe CocoaPodsPackage do
    subject do
      described_class.new("Name", "1.0.0", license_text)
    end
    let(:license_text) { nil }

    it_behaves_like "a Package"

    its(:name) { should == "Name" }
    its(:version) { should == "1.0.0" }
    its(:summary) { should eq "" }
    its(:description) { should eq "" }
    its(:homepage) { should eq "" }
    its(:groups) { should == [] }
    its(:children) { should == [] }

    describe '#licenses' do
      context "when there's a license" do
        let(:license_text) { "LicenseText" }

        it "returns the name of the license if the license is found be text" do
          license = double(:license, name: "LicenseName")
          allow(License).to receive(:find_by_text).with(license_text).and_return(license)

          expect(subject.licenses.map(&:name)).to eq ["LicenseName"]
        end

        it "returns unknown if the license can't be found by text" do
          allow(License).to receive(:find_by_text).with(license_text).and_return(nil)

          expect(subject.licenses.map(&:name)).to eq ["unknown"]
        end
      end

      it "returns unknown when there's no license" do
        expect(subject.licenses.map(&:name)).to eq ["unknown"]
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
license_finder-2.0.0.rc2 spec/lib/license_finder/package_managers/cocoa_pods_package_spec.rb