mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-07 05:28:34 +00:00
df94f08dab
and tidied up the layout to make it easier to read
35 lines
554 B
YAML
35 lines
554 B
YAML
---
|
|
"Basic":
|
|
|
|
- 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
|
|
- match: { _version: 3}
|
|
|
|
- do:
|
|
delete:
|
|
index: test_1
|
|
type: test
|
|
id: 1
|
|
|
|
- match: { _version: 4}
|