aboutsummaryrefslogtreecommitdiffstats
path: root/moon_manager/tests/functional_pod/conftest.py
diff options
context:
space:
mode:
authorThomas Duval <thomas.duval@orange.com>2018-01-22 15:51:03 +0100
committerThomas Duval <thomas.duval@orange.com>2018-01-24 09:55:31 +0100
commit72413a4640e458690cf65f445bc10f28886f4e8f (patch)
treeb7e4ac1c181584f07e28b39e6aa24d3cf00822f5 /moon_manager/tests/functional_pod/conftest.py
parent36fe604a69eaa4c36f309bd68e36d75c3850c5c4 (diff)
Functional tests development
Change-Id: I641522d813f171a4eed0e6b39b2f25cc470c76d1
Diffstat (limited to 'moon_manager/tests/functional_pod/conftest.py')
-rw-r--r--moon_manager/tests/functional_pod/conftest.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/moon_manager/tests/functional_pod/conftest.py b/moon_manager/tests/functional_pod/conftest.py
new file mode 100644
index 00000000..b5811755
--- /dev/null
+++ b/moon_manager/tests/functional_pod/conftest.py
@@ -0,0 +1,12 @@
+import pytest
+
+print("ANALYSING CONFTEST")
+
+
+@pytest.fixture
+def context():
+ print("CREATING CONTEXT")
+ yield {
+ "hostname": "manager",
+ "port": 8082,
+ }