Sha256: a77b10d1d611bac2690867a3f09f898edbb64ad295f5262a016a71a41cc3b65b
Contents?: true
Size: 1.28 KB
Versions: 9
Compression:
Stored size: 1.28 KB
Contents
require 'spec_helper' module LicenseFinder describe MavenPackage do subject do described_class.new( "artifactId" => "hamcrest-core", "version" => "4.11", "licenses" => [{ "name" => "MIT" }] ) end its(:name) { should == "hamcrest-core" } its(:version) { should == "4.11" } its(:summary) { should == "" } its(:description) { should == "" } its(:homepage) { should == "" } its(:groups) { should == [] } # no way to get groups from maven? its(:children) { should == [] } # no way to get children from maven? its(:install_path) { should be_nil } describe "#license_names_from_spec" do it "returns the license" do expect(subject.license_names_from_spec).to eq ["MIT"] end context "when there are no licenses" do subject { described_class.new({}) } it "is empty" do expect(subject.license_names_from_spec).to be_empty end end context "when there are multiple licenses" do subject do described_class.new( "licenses" => [{ "name" => "1" }, { "name" => "2" }] ) end it "returns multiple licenses" do expect(subject.license_names_from_spec).to eq ['1', '2'] end end end end end
Version data entries
9 entries across 9 versions & 1 rubygems