Clinton Gormley df94f08dab Renamed "ok" and "not_ok" to "is_true" and "is_false"
and tidied up the layout to make it easier to read
2013-07-01 15:58:23 +02:00

69 lines
1.2 KiB
YAML

---
"Refresh":
- do:
indices.create:
index: test_1
body:
settings:
index.refresh_interval: -1
- do:
cluster.health:
wait_for_status: yellow
- do:
index:
index: test_1
type: test
id: 1
body: { foo: bar }
refresh: 1
- do:
index:
index: test_1
type: test
id: 2
body: { foo: bar }
refresh: 1
- do:
search:
index: test_1
type: test
body:
query: { terms: { _id: [1,2] }}
- match: { hits.total: 2 }
- do:
delete:
index: test_1
type: test
id: 1
- do:
search:
index: test_1
type: test
body:
query: { terms: { _id: [1,2] }}
- match: { hits.total: 2 }
- do:
delete:
index: test_1
type: test
id: 2
refresh: 1
- do:
search:
index: test_1
type: test
body:
query: { terms: { _id: [1,2] }}
- match: { hits.total: 1 }