Sha256: 5970b0fc8d35520b110d0fb1601c8363d2ea3e835ee3a9c69aa0202fd245c05e
Contents?: true
Size: 691 Bytes
Versions: 13
Compression:
Stored size: 691 Bytes
Contents
Feature: Requests with params, JSON response Scenario: POST with params When I POST to "/" with: | Name | Value | | some_param | some_value | | im_a_number | 1 | Then the response should be 201 And I should receive the JSON: """ { "some_param" : "some_value", "im_a_number" : "1" } """ Scenario: PUT with params When I PUT to "/" with: | Name | Value | | some_param | some_value | | im_a_number | 1 | Then the response should be 202 And I should receive the JSON: """ { "some_param" : "some_value", "im_a_number" : "1" } """
Version data entries
13 entries across 13 versions & 1 rubygems