Sha256: 747af302aea65be1219b29c0c163525a0126b2c47bd84c1aa1ad4d2e7ad24cbc

Contents?: true

Size: 1.13 KB

Versions: 3

Compression:

Stored size: 1.13 KB

Contents

Feature: Hello Worlds
  In order to see the kiosk system work with a remote kiosk
  As a kiosk client developer
  I want to be able to call a remote kiosk and get a response

  Background:
    Given the kiosk found at 'http:///com.countabout.yodlee.kiosk'
      And the resource 'YodleeUserKiosk' in the kiosk

  Scenario: Basic Remote List Call
    When the resource's list method is called
    Then the results include 'greeting' with value 'Hello World'

  Scenario: Basic Remote Read Call
    When the resource's read method is called with input '{"id": "4"}'
    Then the results include 'greeting' with value 'Hello Reader 4'

  Scenario: Basic Remote Create Call
    When the resource's create method is called with input '{"box": "Top"}'
    Then the results include 'greeting' with value 'Hello Top'

  Scenario: Basic Remote Update Call
    When the resource's update method is called with input '{"id": "4", "box": "Lambs"}'
    Then the results include 'greeting' with value 'Hello Lambs'

  Scenario: Basic Delete Call
    When the resource's delete method is called with input '{"id": "6"}'
    Then the results include 'status' with value 'ok'

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
service_kiosk-0.5.6 examples/kiosk_mall/mall/kiosks/JavaHello/features/basic-remote.feature
service_kiosk-0.5.5 examples/kiosk_mall/mall/kiosks/JavaHello/features/basic-remote.feature
service_kiosk-0.5.4 examples/kiosk_mall/mall/kiosks/JavaHello/features/basic-remote.feature