[TEST] add 'yaml' feature for the test runner (#19436)

Also renamed 30_yaml.yaml to 30_json.yaml since it tests json, not yaml
This commit is contained in:
Honza Král 2016-07-14 17:30:32 +02:00 committed by GitHub
parent c950ea0023
commit e21b1e8066
4 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
---
"Simple alias with yaml body through Accept header":
- skip:
features: headers
features: ["headers", "yaml"]
- do:
indices.create:

View File

@ -1,7 +1,7 @@
---
"REST test with headers":
- skip:
features: headers
features: ["headers", "yaml"]
- do:
index:

View File

@ -34,7 +34,7 @@ import java.util.List;
*/
public final class Features {
private static final List<String> SUPPORTED = Arrays.asList("stash_in_path", "groovy_scripting", "headers", "embedded_stash_key");
private static final List<String> SUPPORTED = Arrays.asList("stash_in_path", "groovy_scripting", "headers", "embedded_stash_key", "yaml");
private Features() {