Sha256: f002392ecca5e4a87774bc23fe70421700ef538ed658c4ff177c24a3b572bc43

Contents?: true

Size: 1.31 KB

Versions: 1

Compression:

Stored size: 1.31 KB

Contents

Feature: Display the page

  Background:
    Given I open the application

  Scenario Outline: Display the page
    When I open the page "<path>"
    Then I should see active tab titled "<title>"
    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: Display the several pages
    When I open the page "/Home"
    And I open the page "/Home/Personal stuff/Addresses"
    And I open the page "/Home/Development/Programming Languages/Ruby"

    Then I should have the following open tabs:
      | Home      |
      | Addresses |
      | Ruby      |
    Then I should see active tab titled "Ruby"
    And I should see the application title "Rwiki /Home/Development/Programming Languages/Ruby"
    And I should see a content for the page "/Home/Development/Programming Languages/Ruby"

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rwiki-0.2.5 features/display_page.feature