Sha256: 1156313c27eeea9e6101f5739ff98280f81f85f6e17f90a880cc70beab1129e4

Contents?: true

Size: 976 Bytes

Versions: 7

Compression:

Stored size: 976 Bytes

Contents

Feature: HTML Report
  So that I can easily view a report outlining my application dependencies and licenses
  As a non-technical application product owner
  I want license finder to generate an easy-to-understand HTML report

  Background:
    Given I have an app

  Scenario: Dependency details listed in HTML report
    And my app depends on a gem with specific details
    When I run license_finder
    Then I should see the project name my_app in the html
    And I should see my specific gem details listed in the html

  Scenario: Approval status of dependencies indicated in HTML report
    And my app depends on MIT and GPL licensed gems
    When I whitelist the MIT license
    Then I should see the GPL gem unapproved in html
    And the MIT gem approved in html

  Scenario: Dependency summary
    And my app depends on MIT and GPL licensed gems
    When I whitelist everything I can think of
    Then I should see only see GPL liceneses as unapproved in the html

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
license_finder-1.2 features/report_html.feature
license_finder-1.2-java features/report_html.feature
license_finder-1.1.1-java features/report_html.feature
license_finder-1.1.1 features/report_html.feature
license_finder-1.1.0 features/report_html.feature
license_finder-1.0.1 features/report_html.feature
license_finder-1.0.0.1 features/report_html.feature