summaryrefslogtreecommitdiffstats
path: root/share/extensions/test/funcplot.test.py
diff options
context:
space:
mode:
authorMartin Owens <doctormo@gmail.com>2018-09-09 08:28:15 +0000
committerMartin Owens <doctormo@gmail.com>2018-09-09 08:28:15 +0000
commit36c73a704b281e616d779b1eac5430d7527a9338 (patch)
tree189c5defb29728d428f44e17903bde11b89540a1 /share/extensions/test/funcplot.test.py
parentUpdate selection-chemistry.cpp (diff)
downloadinkscape-36c73a704b281e616d779b1eac5430d7527a9338.tar.gz
inkscape-36c73a704b281e616d779b1eac5430d7527a9338.zip
Move extensions to git inkscape-extensions repository
Diffstat (limited to 'share/extensions/test/funcplot.test.py')
-rwxr-xr-xshare/extensions/test/funcplot.test.py26
1 files changed, 0 insertions, 26 deletions
diff --git a/share/extensions/test/funcplot.test.py b/share/extensions/test/funcplot.test.py
deleted file mode 100755
index daa49a4c8..000000000
--- a/share/extensions/test/funcplot.test.py
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/usr/bin/env python
-
-# This is only the automatic generated test file for ../funcplot.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 funcplot import *
-
-class FuncPlotBasicTest(unittest.TestCase):
-
- #def setUp(self):
-
- def test_run_without_parameters(self):
- args = [ 'minimal-blank.svg' ]
- e = FuncPlot()
- e.affect( args, False )
- #self.assertEqual( e.something, 'some value', 'A commentary about that.' )
-
-if __name__ == '__main__':
- unittest.main()