Sha256: 03cc3b7da4a3cac704055850ed510f3f39e076116ec4b02a00e4a8646719c19a

Contents?: true

Size: 1.14 KB

Versions: 3

Compression:

Stored size: 1.14 KB

Contents

Feature: Reading and Creating a card
  In order to do anything on the site
  As a user
  I want to be able to read and edit cards
  #expand to CRUD?

  Background:
    Given I log in as Joe User
    #test authentication separately

#  @javascript
  Scenario: Home page visit
    When I go to the homepage
    Then I should see "Home"
    And I should see "Joe User"
    And I should see "Sign out"
    
# all of the following assume the toggle shows up on the main card by default, which it no longer does
#    Then In the main card header I should see a link with class "ui-icon-circle-triangle-s"
#    Then In the main card header I click "close Home"
#    Then In the main card header I should see a link with class "ui-icon-circle-triangle-e"
#    Then In the main card header I click "open Home"
#    Then In the main card header I should see a link with class "ui-icon-circle-triangle-s"

  Scenario: Create a Card
    Given I log in as Joe User
    When I create Phrase card "Buffalo" with content "Me and Me"
#    And I go to card "Buffalo"
    Then In the main card header  I should see "Buffalo"
    And  In the main card content I should see "Me and Me"

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
wagn-1.12.13 features/hello_wagn.feature
wagn-1.12.12 features/hello_wagn.feature
wagn-1.12.11 features/hello_wagn.feature