2015-07-07 01:27:25 -04:00

19 lines
462 B
YAML

# Integration tests for Polish analysis components
#
"Stemmer":
- do:
indices.analyze:
text: studenci
tokenizer: keyword
filters: polish_stem
- length: { tokens: 1 }
- match: { tokens.0.token: student }
---
"Analyzer":
- do:
indices.analyze:
text: studenta był
analyzer: polish
- length: { tokens: 1 }
- match: { tokens.0.token: student }