home *** CD-ROM | disk | FTP | other *** search
/ Chip 2011 November / CHIP_2011_11.iso / Programy / Narzedzia / Inkscape / Inkscape-0.48.2-1-win32.exe / share / extensions / test / foldablebox.test.py < prev    next >
Text File  |  2011-07-08  |  551b  |  22 lines

  1. #!/usr/bin/env python
  2.  
  3. import sys
  4. sys.path.append('..') # this line allows to import the extension code
  5.  
  6. import unittest
  7. from foldablebox import *
  8.  
  9. class FoldableBoxArguments(unittest.TestCase):
  10.  
  11.   #def setUp(self):
  12.  
  13.   def test_basic_box_elements(self):
  14.     args = [ 'minimal-blank.svg' ]
  15.     e = FoldableBox()
  16.     e.affect( args, False )
  17.     self.assertEqual( e.box.tag, 'g', 'The box group must be created.' )
  18.     self.assertEqual( len( e.box.getchildren() ), 13, 'The box group must have 13 childs.' )
  19.  
  20. if __name__ == '__main__':
  21.   unittest.main()
  22.