Sha256: 5152cfd1aea47f55d2747f3e113841654f4a9b4c4feb475e2e4540264790def4

Contents?: true

Size: 573 Bytes

Versions: 4

Compression:

Stored size: 573 Bytes

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
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
license_finder-2.1.0.rc4 features/features/report/composite_spec.rb
license_finder-2.1.0.rc3 features/features/report/composite_spec.rb
license_finder-2.1.0.rc2 features/features/report/composite_spec.rb
license_finder-2.1.0.rc1 features/features/report/composite_spec.rb