s3-tests/request_decision_graph.yml
Kyle Marsh 62bd05a390 S3 Fuzzer: Handle null choices
Sometimes you might want to have your current node terminate the descent or
set something to the empty string.
2011-09-12 12:53:18 -07:00

22 lines
312 B
YAML

start:
set: {}
choice:
- bucket
bucket:
set:
urlpath: /{bucket}
choice:
- bucket_get
- bucket_put
- bucket_delete
bucket_delete:
set:
method: DELETE
query:
- null
- policy
- website
choice: []