2013-09-09 09:29:31 -04:00
|
|
|
---
|
|
|
|
"Default values":
|
|
|
|
|
|
|
|
- do:
|
|
|
|
index:
|
|
|
|
index: test_1
|
|
|
|
type: test
|
|
|
|
id: 1
|
|
|
|
body: { "foo": "bar" }
|
|
|
|
|
|
|
|
- do:
|
|
|
|
get:
|
|
|
|
index: test_1
|
2014-01-08 11:37:35 -05:00
|
|
|
type: _all
|
2013-09-09 09:29:31 -04:00
|
|
|
id: 1
|
|
|
|
|
|
|
|
- match: { _index: test_1 }
|
|
|
|
- match: { _type: test }
|
|
|
|
- match: { _id: '1' }
|
|
|
|
- match: { _source: { foo: "bar" } }
|
|
|
|
|