Clone of official tools

Revision:
36:96847d42f010
Parent:
35:da9c89f8be7d
Child:
37:f8cfeb185c30
--- a/test/config_test/test05/test_data.py	Wed Feb 15 13:53:18 2017 -0600
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,29 +0,0 @@
-# This tests overriding configuration values based on target labels.
-# Four targets are defined:
-#    - "base" is the base target, it doesn't define any extra labels
-#    - "b1" inherits from "base" and adds the "b1_label" label
-#    - "b2" inherits from "base" and adds the "b2_label" label
-#    - "both" inherits from both "b1" and "b2", so it inherits both labels
-
-expected_results = {
-    "b1": {
-        "desc": "override values based on labels (first label)",
-        "app.app1": "v_app1[b1_label]",
-        "app.app2": "v_app2"
-    },
-    "b2": {
-        "desc": "override values based on labels (second label)",
-        "app.app1": "v_app1",
-        "app.app2": "v_app2[b2_label]"
-    },
-    "both": {
-        "desc": "override values based on labels (both labels)",
-        "app.app1": "v_app1[b1_label]",
-        "app.app2": "v_app2[b2_label]"
-    },
-    "base": {
-        "desc": "override values based on labels (no labels)",
-        "app.app1": "v_app1",
-        "app.app2": "v_app2"
-    }
-}