Sha256: 7925038bdc89df28697a55b77b8bb8d1efacd5f0d316884a30669b65c31c2ea9

Contents?: true

Size: 1.25 KB

Versions: 20

Compression:

Stored size: 1.25 KB

Contents

Feature: Manage Flags
  In order to value
  As a role
  I want feature

Scenario: List all flags
  Given I am logged in
  When I get the first asset
  And I assign the flags "red blue green" to the asset
  When I get all flags
  Then the flags list should contain "red"

Scenario: List flagged assets
  Given I am logged in
  When I get the first asset
  And I assign the flags "red blue green" to the asset
  When I get all flags
  Then the flags list should contain "red"
  
Scenario: Add flags to asset
  Given I am logged in
  And I get the first asset
  And I assign the flags "red blue green" to the asset
  Then the flags list should contain "red"
  Then the flags list should contain "blue"
  Then the flags list should contain "green"

Scenario: Find all assets by flag
  Given I am logged in
  And I get the first asset
  And I assign the flag "red" to the asset
  And I find all assets with the flag "red"
  Then the assets list should contain "9cf8161e-dea5-40ec-990b-d5d24c0d4191"

Scenario: Get asset flags
  Given I am logged in
  And I get the first asset
  And I assign the flag "pear" to the asset
  And I get the flags for the asset
  Then the flags list should contain "pear"

Scenario: Count flags
  Given I am logged in
  Then the flag count should be "4"

Version data entries

20 entries across 20 versions & 1 rubygems

Version Path
360_services-1.1.3 features/manage_flags.feature
360_services-1.1.2 features/manage_flags.feature
360_services-1.1.1 features/manage_flags.feature
360_services-1.0.10 features/manage_flags.feature
360_services-1.1.0 features/manage_flags.feature
360_services-1.0.9 features/manage_flags.feature
360_services-1.0.8 features/manage_flags.feature
360_services-1.0.7 features/manage_flags.feature
360_services-1.0.6 features/manage_flags.feature
360_services-1.0.5 features/manage_flags.feature
360_services-1.0.4 features/manage_flags.feature
360_services-1.0.3 features/manage_flags.feature
360_services-1.0.2 features/manage_flags.feature
360_services-0.0.8 features/manage_flags.feature
360_services-0.0.7 features/manage_flags.feature
360_services-0.0.6 features/manage_flags.feature
360_services-0.0.5 features/manage_flags.feature
360_services-1.0.1 features/manage_flags.feature
360_services-1.0.0 features/manage_flags.feature
360_services-0.0.4 features/manage_flags.feature