Sha256: de1efe673c418a9e3981482c2885a092a0e9ceb4ca5d9af30e6e1a8b391cf408

Contents?: true

Size: 1.8 KB

Versions: 1

Compression:

Stored size: 1.8 KB

Contents

Feature: History

  Background:
    Given I open the application

  Scenario Outline: Open page with path given in the url
    When I open the application for page "<path>"

    Then I should have the following open tabs:
      | <title> |
    And the tree node "<path>" should be selected
    And I should see a content for the page "<path>"

  Examples:
    | path                                         | title                 |
    | /Home                                        | Home                  |
    | /Home/About                                  | About                 |
    | /Home/Personal stuff/Addresses               | Addresses             |
    | /Home/Personal stuff/Notes                   | Notes                 |
    | /Home/Development/Programming Languages      | Programming Languages |
    | /Home/Development/Programming Languages/Ruby | Ruby                  |

  Scenario Outline: After reload the application last opened page should be loaded
    When I open the page "<path>"
    And I reload the application
    And I wait for load the page

    Then I should see active tab titled "<title>"
    And I should see the application title "Rwiki <path>"
    And I should see a content for the page "<path>"
    And the tree node "<path>" should be selected

  Examples:
    | path                                         | title                 |
    | /Home                                        | Home                  |
    | /Home/About                                  | About                 |
    | /Home/Personal stuff/Addresses               | Addresses             |
    | /Home/Personal stuff/Notes                   | Notes                 |
    | /Home/Development/Programming Languages      | Programming Languages |
    | /Home/Development/Programming Languages/Ruby | Ruby                  |

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rwiki-0.2.5 features/history.feature