Sha256: 0005495ab1c134144e8aca4ff6de3450d47153bad85d427e67d3257373165323

Contents?: true

Size: 1.81 KB

Versions: 62

Compression:

Stored size: 1.81 KB

Contents

Feature: I can visit a page for a model
  In order to easily go to pages for models I've created
  As a feature writer
  I want to be able visit pages their model

  Scenario: create a spoon, go its page
    Given a spoon exists
    When I go to the spoon's page
    Then I should be at the spoon's page
    And the spoon's page should match route /spoons/:id
    
  Scenario: create a spoon, go to its edit page, check lots of different refs to it
    Given a spoon: "fred" exists
    When I go to spoon: "fred"'s edit page
    Then I should be at the 1st spoon's edit page
    And the 1st spoon's edit page should match route /spoons/:id/edit
    And the spoon's edit page should match route /spoons/:id/edit
    And the spoon: "fred"'s edit page should match route /spoons/:id/edit
    
  Scenario: go to a fork's nested tines page
    Given a fork exists
    When I go to the fork's tines page
    Then I should be at the fork's tines page
    And the fork's tines page should match route /forks/:fork_id/tines
  
  Scenario: go to a fork's new tine page
    Given a fork exists
    When I go to the fork's new tine page
    Then I should be at the fork's new tine page
    And the fork's new tine page should match route /forks/:fork_id/tines/new
    
  Scenario: go to a tine in fork context page
    Given a fork exists
    And a tine exists with fork: the fork
    When I go to the fork's tine's page
    Then I should be at the fork's tine's page
    And the fork's tine's page should match route /forks/:fork_id/tines/:id
    
  Scenario: go to a tine's comments in fork context
    Given a fork exists
    And a tine exists with fork: the fork
    When I go to the fork's tine's comments page
    Then I should be at the fork's tine's comments page
    And the fork's tine's comments page should match route /forks/:fork_id/tines/:tine_id/comments

Version data entries

62 entries across 62 versions & 5 rubygems

Version Path
pickle-0.9.0 features/path/models_page.feature
pickle-0.8.0 features/path/models_page.feature
pickle-0.7.2 features/path/models_page.feature
pickle-0.7.1 features/path/models_page.feature
pickle-0.7.0 features/path/models_page.feature
pickle-0.6.2 features/path/models_page.feature
pickle-0.6.1 features/path/models_page.feature
pickle-0.6.0 features/path/models_page.feature
pickle-0.5.5 features/path/models_page.feature
pickle-0.5.4 features/path/models_page.feature
pickle-0.5.3 features/path/models_page.feature
pickle-0.5.2 features/path/models_page.feature
spbtv_pickle-0.5.2 features/path/models_page.feature
spbtv_pickle-0.5.1 features/path/models_page.feature
pickle-0.5.1 features/path/models_page.feature
pickle-0.5.0 features/path/models_page.feature
pickle-0.4.11 features/path/models_page.feature
pickle-0.4.10 features/path/models_page.feature
pickle-0.4.9 features/path/models_page.feature
pickle-0.4.8 features/path/models_page.feature