Sha256: 1218f0d572b0f51a8a2197eeba9dc13683dde955b1810b93c66d26d0a40fe7c0

Contents?: true

Size: 644 Bytes

Versions: 56

Compression:

Stored size: 644 Bytes

Contents

@dsl
Feature: Assigning ownership

  Background:

  Scenario: Create without ownership
    When I run script:
    """
role "user", "bob"
    """
    Then the "role" "cucumber:user:bob" should not have an owner

  Scenario: Create with explicit ownership
    When I run script:
    """
role "user", "bob", ownerid: "foobar"
    """
    Then the "role" "cucumber:user:bob" should be owned by "foobar"
    
  Scenario: Create with scoped ownership
    When I run script:
    """
role "user", "bob" do
  owns do
    resource "food", "bacon"
  end
end
    """
    Then the "resource" "cucumber:food:bacon" should be owned by "cucumber:user:bob"
    

Version data entries

56 entries across 56 versions & 1 rubygems

Version Path
conjur-cli-5.6.6 features/dsl_ownership.feature
conjur-cli-5.6.5 features/dsl_ownership.feature
conjur-cli-5.6.4 features/dsl_ownership.feature
conjur-cli-5.6.3 features/dsl_ownership.feature
conjur-cli-5.5.0 features/dsl_ownership.feature
conjur-cli-5.4.0 features/dsl_ownership.feature
conjur-cli-5.3.0 features/dsl_ownership.feature
conjur-cli-5.2.5 features/dsl_ownership.feature
conjur-cli-5.2.4 features/dsl_ownership.feature
conjur-cli-5.2.3 features/dsl_ownership.feature
conjur-cli-5.2.1 features/dsl_ownership.feature
conjur-cli-5.2.0 features/dsl_ownership.feature
conjur-cli-5.1.2 features/dsl_ownership.feature
conjur-cli-5.1.1 features/dsl_ownership.feature
conjur-cli-5.1.0 features/dsl_ownership.feature
conjur-cli-4.30.1 features/dsl_ownership.feature
conjur-cli-4.30.0 features/dsl_ownership.feature
conjur-cli-4.29.0 features/dsl_ownership.feature
conjur-cli-4.28.2 features/dsl_ownership.feature
conjur-cli-4.28.1 features/dsl_ownership.feature