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 / printing-marks.test.py < prev    next >
Text File  |  2011-07-08  |  739b  |  27 lines

  1. #!/usr/bin/env python
  2.  
  3. # This is only the automatic generated test file for ../printing-marks.py
  4. # This must be filled with real tests and this commentary
  5. # must be cleared.
  6. # If you want to help, read the python unittest documentation:
  7. # http://docs.python.org/library/unittest.html
  8.  
  9. import sys
  10. sys.path.append('..') # this line allows to import the extension code
  11.  
  12. import unittest
  13. from printing-marks import *
  14.  
  15. class Printing_MarksBasicTest(unittest.TestCase):
  16.  
  17.   #def setUp(self):
  18.  
  19.   def test_run_without_parameters(self):
  20.     args = [ 'minimal-blank.svg' ]
  21.     e = Printing_Marks()
  22.     e.affect( args, False )
  23.     #self.assertEqual( e.something, 'some value', 'A commentary about that.' )
  24.  
  25. if __name__ == '__main__':
  26.   unittest.main()
  27.