summaryrefslogtreecommitdiffstats
path: root/tests/test_api.py
diff options
context:
space:
mode:
authorGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2012-10-13 21:39:58 +0200
committerGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2012-10-13 21:39:58 +0200
commit7e7adc64713f74976d5994af36b5f758620fb37b (patch)
tree868084317f8818dbb327c76eaff3c7c7edce0231 /tests/test_api.py
parentfixed JsEngine init (diff)
downloadpyload-7e7adc64713f74976d5994af36b5f758620fb37b.tar.xz
added JSON and WS client, re organized tests, new classes for easier api tests
Diffstat (limited to 'tests/test_api.py')
-rw-r--r--tests/test_api.py18
1 files changed, 0 insertions, 18 deletions
diff --git a/tests/test_api.py b/tests/test_api.py
deleted file mode 100644
index 0171b46bb..000000000
--- a/tests/test_api.py
+++ /dev/null
@@ -1,18 +0,0 @@
-
-from unittest import TestCase
-
-from pyLoadCore import Core
-from module.common.APIExerciser import APIExerciser
-
-class TestApi(TestCase):
-
- @classmethod
- def setUpClass(cls):
- cls.core = Core()
- cls.core.start(False, False, True)
-
- def test_random(self):
- api = APIExerciser(self.core)
-
- for i in range(2000):
- api.testAPI()