re-import sources as agreed with the maintainer
This commit is contained in:
parent
47459c49c3
commit
7d91cc9fa7
15
tests/parse/test.py
Normal file
15
tests/parse/test.py
Normal file
@ -0,0 +1,15 @@
|
||||
#!/usr/bin/env python3
|
||||
|
||||
codepoints = 0
|
||||
|
||||
file = '/usr/share/unicode/ucd/UnicodeData.txt'
|
||||
|
||||
with open(file, mode='rt', encoding='utf-8') as unicode_data:
|
||||
for line in unicode_data.readlines():
|
||||
codepoint_string, name, category = line.split(';')[:3]
|
||||
codepoint = int(codepoint_string, 16)
|
||||
char = chr(codepoint)
|
||||
codepoints = codepoints + 1
|
||||
|
||||
print(codepoints)
|
||||
assert(codepoints > 32000)
|
13
tests/tests.yml
Normal file
13
tests/tests.yml
Normal file
@ -0,0 +1,13 @@
|
||||
---
|
||||
- hosts: localhost
|
||||
tags:
|
||||
- classic
|
||||
roles:
|
||||
- role: standard-test-basic
|
||||
required_packages:
|
||||
- unicode-ucd
|
||||
- python36
|
||||
tests:
|
||||
- parse:
|
||||
run: python3 test.py
|
||||
...
|
Loading…
Reference in New Issue
Block a user