openwrt-packages/lang/python/python-charset-normalizer/test.sh

14 lines
292 B
Bash
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/bin/sh
[ "$1" = python3-charset-normalizer ] || exit 0
python3 - << 'EOF'
from charset_normalizer import from_bytes
s = 'Bсеки човек има право на образование.'
byte_str = s.encode('cp1251')
result = from_bytes(byte_str).best()
assert str(result) == s
EOF