We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5670998 commit f2d99e7Copy full SHA for f2d99e7
1 file changed
tests/features/rest.feature
@@ -56,9 +56,15 @@ Feature: Testing RESTContext
56
When I send a GET request to "/rest/index.php"
57
Then I should see "HTTP_XXX : yyy"
58
59
+ Scenario: Add header with large numeric value
60
+ Given I add "xxx-large-numeric" header equal to "92233720368547758070"
61
+ When I send a GET request to "/rest/index.php"
62
+ Then I should see "HTTP_XXX_LARGE_NUMERIC : 92233720368547758070"
63
+
64
Scenario: Header should not be cross-scenarios persistent
65
66
Then I should not see "HTTP_XXX : yyy"
67
+ Then I should not see "HTTP_XXX_LARGE_NUMERIC"
68
69
Scenario: Case-insensitive header name
70
Like describe in the rfc2614 §4.2
0 commit comments