Sha256: 273aa19eb6f5bf5ac8335e8f8aede64b4c5f20af209d84616bcd7794ddd963ba

Contents?: true

Size: 845 Bytes

Versions: 4

Compression:

Stored size: 845 Bytes

Contents

Feature: Interacting with entries

  Background:
    Given a published entry
    When I am on the home page
    And I follow the title of the entry
    Then I should see the entry

  Scenario: A human submits a comment
    When I fill in "comment_name" with "Michael"
    And I fill in "comment_email" with "michael@example.com"
    And I fill in "comment_body" with "Cool post"
    And I press "Add comment"
    Then I should see "Michael"
    And I should see "Cool post"
    And the entry should have 1 comment

  Scenario: A bot submits a comment
    When I fill in "comment_name" with "v1@gr@"
    And I fill in "comment_nickname" with "blue pill"
    And I fill in "comment_email" with "spambot@example.com"
    And I fill in "comment_body" with "take the blue pill"
    And I press "Add comment"
    Then the entry should have 0 comments

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
jabe-0.5.3 features/entries.feature
jabe-0.5.2 features/entries.feature
jabe-0.5.1 features/entries.feature
jabe-0.5.0 features/entries.feature