tests/test_ansicolor.py
author Radek Brich <radek.brich@devl.cz>
Wed, 09 Jul 2014 17:56:48 +0200
changeset 15 497067ee16b7
parent 14 6caad95d4540
permissions -rwxr-xr-x
Update setup.py: Do not rename the package to python3-pycolib for bdist_rpm target. This should be done by packager if needed.

#!/usr/bin/env python3

from pycolib.ansicolor import highlight, names

import unittest


class TestAnsiColor(unittest.TestCase):

    def test_colors(self):
        for fg in range(0,8):
            for bg in range(0,8):
                print(
                    highlight(1, fg, bg),
                    '%10s on %-10s' % (names[fg], names[bg]),
                    highlight(0),
                    sep='', end=''
                )
            print()


if __name__ == '__main__':
    unittest.main()