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
/
grid_polar.test.py
< prev
next >
Wrap
Text File
|
2011-07-08
|
723b
|
27 lines
#!/usr/bin/env python
# This is only the automatic generated test file for ../grid_polar.py
# This must be filled with real tests and this commentary
# must be cleared.
# If you want to help, read the python unittest documentation:
# http://docs.python.org/library/unittest.html
import sys
sys.path.append('..') # this line allows to import the extension code
import unittest
from grid_polar import *
class Grid_PolarBasicTest(unittest.TestCase):
#def setUp(self):
def test_run_without_parameters(self):
args = [ 'minimal-blank.svg' ]
e = Grid_Polar()
e.affect( args, False )
#self.assertEqual( e.something, 'some value', 'A commentary about that.' )
if __name__ == '__main__':
unittest.main()