tests/test_ansicolor.py
author Radek Brich <radek.brich@devl.cz>
Wed, 09 Jul 2014 17:56:05 +0200
changeset 14 6caad95d4540
permissions -rwxr-xr-x
Add test ansicolor.

#!/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()