summaryrefslogtreecommitdiffstats
path: root/tests/unit/collector/collector_test.py
diff options
context:
space:
mode:
authorYujun Zhang <zhang.yujunz@zte.com.cn>2017-02-24 10:08:41 +0800
committerYujun Zhang <zhang.yujunz@zte.com.cn>2017-02-27 21:46:53 +0800
commitd0441a8775473a942c0c6077b3a4e5ca35adeb2b (patch)
tree14e361af2ddc1437c6da0bd8b3fec145a601f149 /tests/unit/collector/collector_test.py
parentc756cc3236f86fb3d0d9ea77250adb653c31f3bd (diff)
Rename test case to avoid possible name conflict
pytest does not allow two test file have same name despite they are in different folder. Change-Id: I568fe042f6dbe99df336d0ce4d6ed9c78305fe74 Signed-off-by: Yujun Zhang <zhang.yujunz@zte.com.cn>
Diffstat (limited to 'tests/unit/collector/collector_test.py')
-rw-r--r--tests/unit/collector/collector_test.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/unit/collector/collector_test.py b/tests/unit/collector/collector_test.py
new file mode 100644
index 00000000..17fe1af1
--- /dev/null
+++ b/tests/unit/collector/collector_test.py
@@ -0,0 +1,18 @@
+##############################################################################
+# Copyright (c) 2017 ZTE Corp 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
+##############################################################################
+
+
+from qtip.loader.plan import load_collector
+from qtip.collector import CollectorProp as CProp
+
+
+def test_load_collector(collectors_config):
+ for c in collectors_config:
+ collector = load_collector(c[CProp.TYPE])
+ assert collector.TYPE == c[CProp.TYPE]