summaryrefslogtreecommitdiffstats
path: root/lang/python/python-chardet/test.sh
blob: fde63b3c8600940f8b837e5bb85cd9fdf6c8a92a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

[ "$1" = python3-chardet ] || exit 0

python3 - << 'EOF'
import chardet

result = chardet.detect(b'Hello, World!')
assert result['encoding'] is not None

result = chardet.detect('Привет мир'.encode('utf-8'))
assert result['encoding'] is not None
EOF