Sha256: d69de9577d80683f243f5210f264fb6886670e534a4771385455a586b6ef8f87

Contents?: true

Size: 1.95 KB

Versions: 6

Compression:

Stored size: 1.95 KB

Contents

---
- name: 'Delete Basich User'
  request:
    path:        '/users/duffybasic'
    method:      'DELETE'
    body:        {}
  response_expectation:
    status_code: 202
- name: 'Delete User 1'
  request:
    path:        '/users/duffyduck'
    method:      'DELETE'
    body:        {}
  response_expectation:
    status_code: 202
- name: 'User 1 should be nonexistant afterwards'
  request:
    path:          '/users/duffyduck'
    method:        'GET'
    body:          {}
  response_expectation:
    status_code: 404
- name: 'Delete User 2'
  request:
    path:        '/users/duffyduck2'
    method:      'DELETE'
    body:        {}
  response_expectation:
    status_code: 202
- name: 'User 2 should be nonexistant afterwards'
  request:
    path:          '/users/duffyduck2'
    method:        'GET'
    body:          {}
  response_expectation:
    status_code: 404
- name: 'Delete User 3'
  request:
    path:        '/users/duffyduck3'
    method:      'DELETE'
    body:        {}
  response_expectation:
    status_code: 202
- name: 'User 3 should be nonexistant afterwards'
  request:
    path:          '/users/duffyduck3'
    method:        'GET'
    body:          {}
  response_expectation:
    status_code: 404
- name: 'Delete adult user duffydad'
  request:
    path:        '/users/duffydad'
    method:      'DELETE'
    body:        {}
  response_expectation:
    status_code: 202
- name: 'Adult user duffydad should be nonexistant afterwards'
  request:
    path:          '/users/duffydad'
    method:        'GET'
    body:          {}
  response_expectation:
    status_code: 404
- name: 'Delete non-adult user duffykid'
  request:
    path:        '/users/duffykid'
    method:      'DELETE'
    body:        {}
  response_expectation:
    status_code: 202
- name: 'Non-Adult duffykid user should be nonexistant afterwards'
  request:
    path:          '/users/duffykid'
    method:        'GET'
    body:          {}
  response_expectation:
    status_code: 404

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
apirunner-0.5.0 examples/test/api_runner/999_delete_user.yml
apirunner-0.4.10 examples/test/api_runner/999_delete_user.yml
apirunner-0.4.9 examples/test/api_runner/999_delete_user.yml
apirunner-0.4.8 examples/test/api_runner/999_delete_user.yml
apirunner-0.4.7 examples/test/api_runner/999_delete_user.yml
apirunner-0.4.6 examples/test/api_runner/999_delete_user.yml