public
Description: The code that runs webjam.com.au
Homepage: http://webjam.com.au
Clone URL: git://github.com/webjam/webjam.git
webjam / features / posts.feature
100644 25 lines (19 sloc) 0.695 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
Feature: Viewing post pages
 
  In order to absorb Lachlan's deep insights into man and machine
  I should be able to visit pages and pages and pages of blog posts
  
  Scenario: viewing a post when logged in
    Given I am logged in
    When I view the post page
    Then I see the page
 
  Scenario: viewing a post when not logged in
    Given I am not logged in
    When I view the post page
    Then I see the page
 
  Scenario: viewing a mobile post when logged in
    Given I am logged in
    When I view the mobile post page
    Then I see the page
  
  Scenario: viewing a mobile post when not logged in
    Given I am logged in
    When I view the mobile post page
    Then I see the page