Sha256: 3ee734fb5b43efb2b334eb0e8755e93a23bf2e10270c4086c59aeab75d07793b

Contents?: true

Size: 1.37 KB

Versions: 1

Compression:

Stored size: 1.37 KB

Contents

Feature: Create a basic rest client that can get, put, post, and delete

@extended @get @print
@print.S1
Scenario: client rest Get
  Given I have a web service
  And I have "GET" service for "/test" as follows
    """
    {'Answer': 'What did you expect?'}
    """
  And I am a rest client
  When I "GET" from the web service
  Then I receive the expected message

@put @extended @print
@print.S2
Scenario: client rest Put
  Given I have a web service
  And I have "PUT" service for "/test" as follows
    """
    {'Answer': 'What did you expect?'}
    """
  And I am a rest client
  When I "PUT" to the web service with the following
    """
    {'Answer': 'What did you expect?'}
    """
  Then I receive the expected message

@post @extended @print
@print.S3
Scenario: client rest Post
  Given I have a web service
  And I have "POST" service for "/test" as follows
    """
    {'Answer': 'What did you expect?'}
    """
  And I am a rest client
  When I "POST" to the web service with the following
    """
    {'Answer': 'What did you expect?'}
    """
  Then I receive the expected message

@delete @extended @print
@print.S4
Scenario: client rest Delete
  Given I have a web service
  And I have "DELETE" service for "/test" as follows
    """
    {'Answer': 'What did you expect?'}
    """
  And I am a rest client
  When I "DELETE" from the web service
  Then I receive the expected message

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rest_baby-0.5 features/print_response.feature