diff options
| author | ajuanpi <> | 2016-05-24 13:23:46 +0000 |
|---|---|---|
| committer | JazzyNico <nicoduf@yahoo.fr> | 2016-05-24 13:23:46 +0000 |
| commit | f96a7eb3f99d0893ddb1e07bd1d9853737e9b033 (patch) | |
| tree | c131ce125dcfb343bd8e91fc6966001627214579 /share/extensions/test/jitternodes.test.py | |
| parent | [Bug #1183473] Convert to Dashes does not work with an imported svg. (diff) | |
| download | inkscape-f96a7eb3f99d0893ddb1e07bd1d9853737e9b033.tar.gz inkscape-f96a7eb3f99d0893ddb1e07bd1d9853737e9b033.zip | |
[Bug #1071833] major update of Jitter Nodes extension.
Fixed bugs:
- https://launchpad.net/bugs/1071833
(bzr r14912)
Diffstat (limited to 'share/extensions/test/jitternodes.test.py')
| -rwxr-xr-x | share/extensions/test/jitternodes.test.py | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/share/extensions/test/jitternodes.test.py b/share/extensions/test/jitternodes.test.py new file mode 100755 index 000000000..699752af2 --- /dev/null +++ b/share/extensions/test/jitternodes.test.py @@ -0,0 +1,26 @@ +#!/usr/bin/env python + +# This is only the automatic generated test file for ../jitternodes.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 jitternodes import * + +class JitterNodesBasicTest(unittest.TestCase): + + #def setUp(self): + + def test_run_without_parameters(self): + args = [ 'minimal-blank.svg' ] + e = JitterNodes() + e.affect( args, False ) + #self.assertEqual( e.something, 'some value', 'A commentary about that.' ) + +if __name__ == '__main__': + unittest.main() |
