Sha256: 474155044859bec3c2be6b529268b3b6cf820696b3f2a3cffb183764abbd7d96

Contents?: true

Size: 935 Bytes

Versions: 6

Compression:

Stored size: 935 Bytes

Contents

Feature: Add Content with categories

  Background:
    Given the cms database is populated
    Given a Content Type named "Product" is registered
    And I am logged in as a Content Editor

  Scenario: With no Category Type defined yet
    When I visit /cms/products/new
    Then I should see "You must first create a 'Category Type' named 'Product'"

  Scenario: With No Categories
    Given the following Category Types exist:
      | name    |
      | Product |
    When I request /cms/products/new
    Then I should see "You must first create a Category with a Category Type of 'Product'."

  Scenario: With Categories
    Given the following Category Types exist:
      | name    |
      | Product |
    And the following Categories exist for "Product":
      | name     |
      | T-shirts |
      | Hoodies  |
    When I visit /cms/products/new
    Then I should see the following content:
      | T-shirts |
      | Hoodies  |

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
browsercms-3.4.2 features/taxonomy/add_content_with_category.feature
browsercms-3.4.2.rc1 features/taxonomy/add_content_with_category.feature
browsercms-3.4.1 features/taxonomy/add_content_with_category.feature
browsercms-3.4.0 features/taxonomy/add_content_with_category.feature
browsercms-3.4.0.rc2 features/taxonomy/add_content_with_category.feature
browsercms-3.4.0.rc1 features/taxonomy/add_content_with_category.feature