Sha256: 822366a26997ce769ce0d54e2aea06e68174d06e321ab13174928c2489052af2

Contents?: true

Size: 1 KB

Versions: 1

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 "7"
  
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

1 entries across 1 versions & 1 rubygems

Version Path
360_services-0.0.1 features/manage_tags.feature