Sha256: 521e7b3967d6b0fb6717ff955e4b5b9b47192901ffee49ec5415b04b233729c5
Contents?: true
Size: 982 Bytes
Versions: 29
Compression:
Stored size: 982 Bytes
Contents
Feature: Hello World As a developer I want to see the hello world messages Scenario: Hello World message Given the client calls the route 'rubypitaya.helloWorldHandler.sayHello' Then the server response 'code' should be 'RP-200' And the server response 'data.message' should be 'Hello!' Scenario: Custom message Given the client calls the route 'rubypitaya.helloWorldHandler.showMessage' with params | message | | Hello World! | Then the server response 'code' should be 'RP-200' And the server response 'data.message' should be 'Hello World!' Scenario: Custom message with json Given the client calls the route 'rubypitaya.helloWorldHandler.showMessage' with json """ { "message": "Hello World!" } """ Then the server response should be the following json """ { "code": "RP-200", "data": { "message": "Hello World!" } } """
Version data entries
29 entries across 25 versions & 1 rubygems