OpenSearch/rest-api-spec/test/delete/10_basic.yaml

35 lines
554 B
YAML
Raw Normal View History

2013-06-28 11:17:23 -04:00
---
"Basic":
2013-06-28 11:17:23 -04:00
- do:
catch: missing
delete:
index: test_1
type: test
id: 1
- do:
delete:
index: test_1
type: test
id: 1
ignore_missing: 1
- do:
index:
index: test_1
type: test
id: 1
body: { foo: bar }
- is_true: ok
2013-06-28 11:17:23 -04:00
- match: { _version: 3}
- do:
delete:
index: test_1
type: test
id: 1
2013-06-28 11:17:23 -04:00
- match: { _version: 4}