Sha256: ae4f8b29ade8ff3ae9c8934b0b88b1bdc6c6be2b73adc51f800e9612bd5072d3

Contents?: true

Size: 867 Bytes

Versions: 7

Compression:

Stored size: 867 Bytes

Contents

Feature: Ignore Bundle Groups
  As a developer
  I want to ignore certain bundler groups
  So that any gems I use in development, or for testing, are automatically approved for use

  Scenario: Bundler groups can be ignored
    Given I have an app
    And I ignore the test group
    When I get the ignored groups
    Then I should see the test group in the output

  Scenario: Ignored bundler groups are not evaluated for licenses
    Given I have an app that depends on a gem in the test bundler group
    And I ignore the test group
    When I run license_finder
    Then I should not see the test gem in the output

  Scenario: Bundler groups can be removed from the ignore list
    Given I have an app
    And I ignore the test group
    And I stop ignoring the test group
    When I get the ignored groups
    Then I should not see the test group in the output

Version data entries

7 entries across 7 versions & 1 rubygems

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