Sha256: 995981833422fc78c7b9b5de9437af59809c9730f22cc699f52753503e255ace
Contents?: true
Size: 1.26 KB
Versions: 3
Compression:
Stored size: 1.26 KB
Contents
require_relative '../../support/feature_helper' describe 'Composite project' do # As a non-technical product owner # I want to run license finder on a composite project # So that I can easily review all licenses used by sub-projects let(:developer) { LicenseFinder::TestingDSL::User.new } specify 'shows dependencies for all active projects' do LicenseFinder::TestingDSL::CompositeProject.create developer.execute_command('license_finder report --recursive') expect(developer).to be_seeing('junit,4.11,Common Public License Version 1.0') end specify 'shows csv report columns in the right order' do LicenseFinder::TestingDSL::CompositeProject.create developer.execute_command('license_finder report --recursive --format csv --columns name version install_path licenses') expect(developer).to be_seeing('junit,4.11,,Common Public License Version 1.0') end specify 'shows install path column when scanning recursively' do project = LicenseFinder::TestingDSL::BundlerProject.create project.install developer.execute_command('license_finder report --recursive --format csv --columns name version install_path licenses') expect(developer).to be_seeing_something_like(%r{multi_xml,0.\d+.\d+,.*\/gems\/multi_xml-0.\d+.\d+,MIT}) end end
Version data entries
3 entries across 3 versions & 1 rubygems