elasticsearch/rest-api-spec/test/indices.delete_mapping/10_basic.yaml
Honza Kral 817f24798a Delete mapping tests
also testing exists_type
2013-07-15 15:01:48 +02:00

31 lines
591 B
YAML

---
"delete mapping tests":
- do:
indices.create:
index: test_index
body:
mappings:
test_type:
properties:
text:
type: string
analyzer: whitespace
- do:
indices.exists_type:
index: test_index
type: test_type
- is_true: ''
- do:
indices.delete_mapping:
index: test_index
type: test_type
- do:
indices.exists_type:
index: test_index
type: test_type
- is_false: ''