From d1f601048beedf0d0e97e698e323c8cd24a1dae9 Mon Sep 17 00:00:00 2001 From: "Azalea (on HyDEV-Daisy)" Date: Sun, 19 Jun 2022 18:03:28 -0400 Subject: [PATCH] [+] Add test ascii --- hyfetch/constants.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/hyfetch/constants.py b/hyfetch/constants.py index abff92b2..d6424a3b 100644 --- a/hyfetch/constants.py +++ b/hyfetch/constants.py @@ -13,3 +13,20 @@ try: except Exception: TERM_LEN = 40 +TEST_ASCII = r""" + |\___/| + ) ( + =\ /= + )===( + / \ + | | + / \ + \ / +/\_/\_ _/_/\_ + | |( ( | | + | | ) ) | | + | |(_( | | + | | | | | + | | | | |""".strip() + +TEST_ASCII_WIDTH = max(len(line) for line in TEST_ASCII.split('\n'))