summaryrefslogtreecommitdiffstats
path: root/tests/unit/api/conftest.py
diff options
context:
space:
mode:
authorakhilbatra898 <akhil.batra@research.iiit.ac.in>2017-03-18 14:16:26 +0530
committerakhilbatra898 <akhil.batra@research.iiit.ac.in>2017-03-22 19:09:42 +0530
commitbef693f40ad87170b7233b9fef62f2fd8abfc8d8 (patch)
tree5d96386803b51a7c30a4c615d7525af630f7268b /tests/unit/api/conftest.py
parent29df737b48ccf31f555d0e4c08a65e14ecb66331 (diff)
Add unit tests for List and get in API.
- refactor controllers - remove abspath and other irrelvant data in response - move fixtures - refactor decorators JIRA: QTIP-226 Change-Id: I5fac5b1bc998da198098992e7ddb47ba49685f31 Signed-off-by: akhilbatra898 <akhil.batra@research.iiit.ac.in>
Diffstat (limited to 'tests/unit/api/conftest.py')
-rw-r--r--tests/unit/api/conftest.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/tests/unit/api/conftest.py b/tests/unit/api/conftest.py
new file mode 100644
index 00000000..23a3be82
--- /dev/null
+++ b/tests/unit/api/conftest.py
@@ -0,0 +1,22 @@
+##############################################################################
+# Copyright (c) 2017 akhil.batra@research.iiit.ac.in and others.
+#
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Apache License, Version 2.0
+# which accompanies this distribution, and is available at
+# http://www.apache.org/licenses/LICENSE-2.0
+##############################################################################
+
+import pytest
+
+from qtip.api import __main__
+
+
+@pytest.fixture(scope="session")
+def app():
+ return __main__.get_app().app
+
+
+@pytest.fixture(scope="session")
+def app_client(app):
+ return app.test_client()