Sha256: fe37a4c6de89bbc0a2d14ad26caa5b48f1d8c4da5c2810c9145c2fb40d3b65d8
Contents?: true
Size: 596 Bytes
Versions: 18
Compression:
Stored size: 596 Bytes
Contents
Feature: Page status codes @allow-rescue Scenario Outline: HTTP response status Given a published page "/foo" with status <code> When I GET "/foo" Then the response status should be <code> Examples: | code | | 200 | | 301 | | 302 | | 410 | Scenario Outline: Redirects Given page "/foo" redirects to "http://google.com" with status <code> When I GET "/foo" Then the response status should be <code> And I should have been redirected to "http://google.com" Examples: | code | | 301 | | 302 |
Version data entries
18 entries across 18 versions & 1 rubygems