Sha256: ae403e42d56343f671effef6f6a0d4674baf3b8703eed9f6e3838f476cc68d3c
Contents?: true
Size: 1.62 KB
Versions: 1
Compression:
Stored size: 1.62 KB
Contents
# frozen_string_literal: true RSpec.describe Licensee::Matchers::Cran do let(:mit) { Licensee::License.find('mit') } let(:gpl2) { Licensee::License.find('gpl-2.0') } let(:gpl3) { Licensee::License.find('gpl-3.0') } let(:content) { "License: MIT + file LICENSE\nPackage: test" } let(:file) { Licensee::ProjectFiles::LicenseFile.new(content, 'DESCRIPTION') } subject { described_class.new(file) } it 'stores the file' do expect(subject.file).to eql(file) end it 'matches MIT' do expect(subject.match).to eql(mit) end it 'is confident' do expect(subject.confidence).to eql(90) end { 'MIT' => Licensee::License.find('mit'), 'MIT + file LICENSE' => Licensee::License.find('mit'), 'GPL (>=2)' => Licensee::License.find('gpl-2.0'), 'GPL( >= 2 )' => Licensee::License.find('gpl-2.0'), 'GPL (>=2) + file LICENSE' => Licensee::License.find('gpl-2.0'), 'GPL (>=3)' => Licensee::License.find('gpl-3.0'), 'GPL-2' => Licensee::License.find('gpl-2.0'), 'GPL-3' => Licensee::License.find('gpl-3.0'), 'Foo' => Licensee::License.find('other') }.each do |license_declaration, license| context "with '#{license_declaration}' declaration" do let(:content) { "Package: test\nLicense: #{license_declaration}" } it 'matches' do expect(subject.match).to eql(license) end end end context 'with no license field' do let(:content) { 'Package: test' } it 'returns nil' do expect(subject.match).to be_nil end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
licensee-9.12.0 | spec/licensee/matchers/cran_matcher_spec.rb |