Sha256: d332d6ee269f20c0521bd1749c2647c94956b8939d60e98eb96486ce6b630818

Contents?: true

Size: 805 Bytes

Versions: 11

Compression:

Stored size: 805 Bytes

Contents

RSpec.describe Licensee::Matchers::Gemspec do
  let(:mit) { Licensee::License.find('mit') }
  let(:content) { "s.license = 'mit'" }
  let(:file) { Licensee::Project::LicenseFile.new(content, 'project.gemspec') }
  subject { described_class.new(file) }

  it 'matches' do
    expect(subject.match).to eql(mit)
  end

  it 'has confidence' do
    expect(subject.confidence).to eql(90)
  end

  {
    'as spec.'      => "spec.license = 'mit'",
    'double quotes' => 's.license = "mit"',
    'no whitespace' => "s.license='mit'",
    'uppercase'     => "s.license = 'MIT'"
  }.each do |description, license_declaration|
    context "with a #{description} declaration" do
      let(:content) { license_declaration }

      it 'matches' do
        expect(subject.match).to eql(mit)
      end
    end
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
licensee-8.9.2 spec/licensee/matchers/gemspec_matcher_spec.rb
licensee-8.9.0 spec/licensee/matchers/gemspec_matcher_spec.rb
licensee-8.8.5 spec/licensee/matchers/gemspec_matcher_spec.rb
licensee-8.8.4 spec/licensee/matchers/gemspec_matcher_spec.rb
licensee-8.8.3 spec/licensee/matchers/gemspec_matcher_spec.rb
licensee-8.8.2 spec/licensee/matchers/gemspec_matcher_spec.rb
licensee-8.8.1 spec/licensee/matchers/gemspec_matcher_spec.rb
licensee-8.8.0 spec/licensee/matchers/gemspec_matcher_spec.rb
licensee-8.7.0 spec/licensee/matchers/gemspec_matcher_spec.rb
licensee-8.6.1 spec/licensee/matchers/gemspec_matcher_spec.rb
licensee-8.6.0 spec/licensee/matchers/gemspec_matcher_spec.rb