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

Version Path
rubypitaya-3.19.6 ./lib/rubypitaya/app-template/features/hello_world.feature
rubypitaya-3.19.5 ./lib/rubypitaya/app-template/features/hello_world.feature
rubypitaya-3.19.4 ./lib/rubypitaya/app-template/features/hello_world.feature
rubypitaya-3.19.3 ./lib/rubypitaya/app-template/features/hello_world.feature
rubypitaya-3.19.2 ./lib/rubypitaya/app-template/features/hello_world.feature
rubypitaya-3.19.1 ./lib/rubypitaya/app-template/features/hello_world.feature
rubypitaya-3.19.0 ./lib/rubypitaya/app-template/features/hello_world.feature
rubypitaya-3.18.0 ./lib/rubypitaya/app-template/features/hello_world.feature
rubypitaya-3.17.2 ./lib/rubypitaya/app-template/features/hello_world.feature
rubypitaya-3.17.1 ./lib/rubypitaya/app-template/features/hello_world.feature
rubypitaya-3.17.0 ./lib/rubypitaya/app-template/features/hello_world.feature
rubypitaya-3.16.0 ./lib/rubypitaya/app-template/features/hello_world.feature
rubypitaya-3.15.3 ./lib/rubypitaya/app-template/features/hello_world.feature
rubypitaya-3.15.2 ./lib/rubypitaya/app-template/features/hello_world.feature
rubypitaya-3.15.1 ./lib/rubypitaya/app-template/features/hello_world.feature
rubypitaya-3.15.0 ./lib/rubypitaya/app-template/features/hello_world.feature
rubypitaya-3.14.0 ./lib/rubypitaya/app-template/features/hello_world.feature
rubypitaya-3.13.1 ./lib/rubypitaya/app-template/features/hello_world.feature
rubypitaya-3.13.0 ./lib/rubypitaya/app-template/features/hello_world.feature
rubypitaya-3.12.5 ./lib/rubypitaya/app-template/features/hello_world.feature