tests/test_treeview.py
author Radek Brich <radek.brich@devl.cz>
Thu, 08 Sep 2011 10:13:55 +0200
changeset 12 bb7d41be0c44
parent 11 762513aacc87
child 19 5e78d52ebb24
permissions -rwxr-xr-x
Update EventSource documentation.

#!/usr/bin/env python3

from tuikit.treeview import *
import unittest

class TestTreeView(unittest.TestCase):
    def test_treemodel(self):
        '''Build tree model, iterate through the tree, test result.'''
        # build tree model
        # root
        # ├ a
        # │ ├ c
        # │ └ d
        # │   ├ e
        # │   │ └ g
        # │   └ f
        # │     └ h
        # └ b
        model = TreeModel()
        model.add('/',  ['a', 'b'])
        model.add('/a', ['c', 'd'])
        model.add((0,1), ['e', 'f'])
        model.add('/0/1/0', 'g')
        model.add('/a/d/f', 'h')
        
        res = ''
        for l, i, c, n in model:
            res += str(l) + str(i) + str(c) + n.name
            
        self.assertEqual(res, '112a212c222d312e411g322f411h122b')


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