Sha256: eb22d956aa219338e8616df2d055cd5ad9e05a8f526feadb593d8c14081656aa

Contents?: true

Size: 580 Bytes

Versions: 9

Compression:

Stored size: 580 Bytes

Contents

Feature: Display Host object fields.

  Background:
    Given a new host

  Scenario: API key of a newly created host is available and valid.
    Then I run the code:
    """
    expect(@host.exists?).to be(true)
    expect(@host.api_key).to be
    Conjur::API.new_from_key(@host.login, @host.api_key).token
    """

  Scenario: API key of a a host can be rotated.
    Then I run the code:
    """
    host = Conjur::API.new_from_key(@host.login, @host.api_key).resource(@host.id)
    api_key = host.rotate_api_key
    Conjur::API.new_from_key(@host.login, api_key).token
    """

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
conjur-api-5.3.3 features/host.feature
conjur-api-5.3.2 features/host.feature
conjur-api-5.3.1 features/host.feature
conjur-api-5.3.0 features/host.feature
conjur-api-5.2.1 features/host.feature
conjur-api-5.2.0 features/host.feature
conjur-api-5.1.0 features/host.feature
conjur-api-5.0.0 features/host.feature
conjur-api-5.0.0.rc1 features/host.feature