Sha256: a26a58dc7fd077b0084c36bdd319f857a9f9fb520c52926f9f7f59e47e648c94

Contents?: true

Size: 1.56 KB

Versions: 8

Compression:

Stored size: 1.56 KB

Contents

RSpec.describe Licensee::Project::PackageInfo do
  let(:content) { '' }
  let(:filename) { '' }
  subject { described_class.new(content, filename) }

  context 'name scoring' do
    {
      'licensee.gemspec' => 1.0,
      'package.json'     => 1.0,
      'DESCRIPTION'      => 0.9,
      'dist.ini'         => 0.8,
      'bower.json'       => 0.75,
      'README.md'        => 0.0
    }.each do |filename, expected_score|
      context "a file named #{filename}" do
        let(:score) { described_class.name_score(filename) }
        it 'scores the file' do
          expect(score).to eql(expected_score)
        end
      end
    end
  end

  context 'matchers' do
    let(:possible_matchers) { subject.possible_matchers }

    context 'with a gemspec ' do
      let(:filename) { 'project.gemspec' }

      it 'returns the gemspec matcher' do
        expect(possible_matchers).to eql([Licensee::Matchers::Gemspec])
      end
    end

    context 'with package.json' do
      let(:filename) { 'package.json' }

      it 'returns the gemspec matcher' do
        expect(possible_matchers).to eql([Licensee::Matchers::NpmBower])
      end
    end

    context 'with dist.ini' do
      let(:filename) { 'dist.ini' }

      it 'returns the DistZilla matcher' do
        expect(possible_matchers).to eql([Licensee::Matchers::DistZilla])
      end
    end

    context 'with DESCRIPTION' do
      let(:filename) { 'DESCRIPTION' }
      let(:content) { 'Package: test' }

      it 'returns the Cran matcher' do
        expect(possible_matchers).to eql([Licensee::Matchers::Cran])
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
licensee-8.9.2 spec/licensee/project_files/package_info_spec.rb
licensee-8.9.0 spec/licensee/project_files/package_info_spec.rb
licensee-8.8.5 spec/licensee/project_files/package_info_spec.rb
licensee-8.8.4 spec/licensee/project_files/package_info_spec.rb
licensee-8.8.3 spec/licensee/project_files/package_info_spec.rb
licensee-8.8.2 spec/licensee/project_files/package_info_spec.rb
licensee-8.8.1 spec/licensee/project_files/package_info_spec.rb
licensee-8.8.0 spec/licensee/project_files/package_info_spec.rb