Code

0762ccb9947d1d516b27aada5a6b9d991f28f971
[inkscape.git] / share / extensions / test / render_barcode.test.py
1 #!/usr/bin/env python
3 # This is only the automatic generated test file for ../render_barcode.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
9 import sys
10 sys.path.append('..') # this line allows to import the extension code
12 import unittest
13 from render_barcode import *
15 class InsertBarcodeBasicTest(unittest.TestCase):
17   #def setUp(self):
19   def test_run_without_parameters(self):
20     args = [ 'minimal-blank.svg' ]
21     e = InsertBarcode()
22     e.affect( args, False )
23     #self.assertEqual( e.something, 'some value', 'A commentary about that.' )
25 if __name__ == '__main__':
26   unittest.main()