Sha256: ebfd2e394346533ab23adb8fa0f07e77a196840dd07a828d9cc5ef41efd17d02

Contents?: true

Size: 729 Bytes

Versions: 6

Compression:

Stored size: 729 Bytes

Contents

@announce
Feature: Security

  Scenario: Bad access token
    Given a git repo
    And a feature "features/test.feature" with:
      """
      Feature:
        Scenario:
          Given passing
      """
    When I set the environment variables to:
      | variable           | value         |
      | CUCUMBER_PRO_TOKEN | invalid-token |
    And I run `cucumber -f Cucumber::Pro -o /dev/null -f pretty`
    And the stderr should contain "Access denied"

  Scenario: No access token
    Given a git repo
    And a feature "features/test.feature" with:
      """
      Feature:
        Scenario:
          Given passing
      """
    When I run `cucumber -f Cucumber::Pro`
    And the stderr should contain "Missing access token"

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
cucumber-pro-0.0.12 features/security.feature
cucumber-pro-0.0.11 features/security.feature
cucumber-pro-0.0.10 features/security.feature
cucumber-pro-0.0.9 features/security.feature
cucumber-pro-0.0.8 features/security.feature
cucumber-pro-0.0.7 features/security.feature