Sha256: 3e615302c92e97f87a4e6e28143f0daa8230d461309d7ec6416d0fe6a24a9fbb

Contents?: true

Size: 1 KB

Versions: 22

Compression:

Stored size: 1 KB

Contents

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

Scenario: Add tags to asset
  Given I am logged in
  And I get the first asset
  And I assign the tags "apple orange pear" to the asset
  Then the tags list should contain "apple"
  Then the tags list should contain "orange"
  Then the tags list should contain "pear"
  
Scenario: Find all assets by tag
  Given I am logged in
  And I get the first asset
  And I assign the tag "apple" to the asset
  And I find all assets with the tag "apple"
  Then the assets list should contain the asset

Scenario: Get asset tags
  Given I am logged in
  And I get the first asset
  And I assign the tag "red" to the asset
  And I get the tags for the asset
  Then the tags list should contain "red"

Scenario: Get tag count
  Given I am logged in
  Then the tag count should be "4"
  
Scenario: Get all tags
  Given I am logged in
  And I get the first asset
  And I assign the tag "apple" to the asset
  And I get all tags
  Then the tags list should contain "apple"

Version data entries

22 entries across 22 versions & 1 rubygems

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