summaryrefslogtreecommitdiffstats
path: root/share/extensions/test/perspective.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/perspective.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/perspective.test.py')
-rwxr-xr-xshare/extensions/test/perspective.test.py31
1 files changed, 0 insertions, 31 deletions
diff --git a/share/extensions/test/perspective.test.py b/share/extensions/test/perspective.test.py
deleted file mode 100755
index a10297507..000000000
--- a/share/extensions/test/perspective.test.py
+++ /dev/null
@@ -1,31 +0,0 @@
-#!/usr/bin/env python
-'''
-Unit test file for ../perspective.py
-Revision history:
- * 2012-01-28 (jazzynico): first working version (only checks the extension
- with the default parameters).
-
---
-If you want to help, read the python unittest documentation:
-http://docs.python.org/library/unittest.html
-'''
-
-import sys
-import unittest
-
-sys.path.append('..') # this line allows to import the extension code
-from perspective import *
-
-class PerspectiveBasicTest(unittest.TestCase):
-
- #def setUp(self):
-
- def test_run_without_parameters(self):
- args = ['minimal-blank.svg']
- e = Project()
- self.assertRaises(SystemExit, e.affect, args)
-
-if __name__ == '__main__':
- unittest.main()
- #suite = unittest.TestLoader().loadTestsFromTestCase(PerspectiveBasicTest)
- #unittest.TextTestRunner(verbosity=2).run(suite)