summaryrefslogtreecommitdiff
path: root/tests/ansi_test.py
diff options
context:
space:
mode:
authorScott Gasch <[email protected]>2021-09-07 22:20:40 -0700
committerScott Gasch <[email protected]>2021-09-07 22:20:40 -0700
commitb10d30a46e601c9ee1f843241f2d69a1f90f7a94 (patch)
tree30c95e6f4333b57ff3ae7a4dee278b2097612d10 /tests/ansi_test.py
parentf49bb9db0c6d1a8622dca1717db68462a4209112 (diff)
Various changes.
Diffstat (limited to 'tests/ansi_test.py')
-rwxr-xr-xtests/ansi_test.py19
1 files changed, 0 insertions, 19 deletions
diff --git a/tests/ansi_test.py b/tests/ansi_test.py
deleted file mode 100755
index 4c1f449..0000000
--- a/tests/ansi_test.py
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/usr/bin/env python3
-
-import unittest
-
-import ansi
-import unittest_utils as uu
-
-
-class TestAnsi(unittest.TestCase):
-
- def test_colorizer(self):
- with ansi.Colorizer() as c:
- print("testing...")
- print("Section:")
- print(" This is some detail.")
-
-
-if __name__ == '__main__':
- unittest.main()