[+] Add test ascii
This commit is contained in:
parent
3b2fb773d3
commit
d1f601048b
1 changed files with 17 additions and 0 deletions
|
@ -13,3 +13,20 @@ try:
|
||||||
except Exception:
|
except Exception:
|
||||||
TERM_LEN = 40
|
TERM_LEN = 40
|
||||||
|
|
||||||
|
TEST_ASCII = r"""
|
||||||
|
|\___/|
|
||||||
|
) (
|
||||||
|
=\ /=
|
||||||
|
)===(
|
||||||
|
/ \
|
||||||
|
| |
|
||||||
|
/ \
|
||||||
|
\ /
|
||||||
|
/\_/\_ _/_/\_
|
||||||
|
| |( ( | |
|
||||||
|
| | ) ) | |
|
||||||
|
| |(_( | |
|
||||||
|
| | | | |
|
||||||
|
| | | | |""".strip()
|
||||||
|
|
||||||
|
TEST_ASCII_WIDTH = max(len(line) for line in TEST_ASCII.split('\n'))
|
||||||
|
|
Loading…
Reference in a new issue