diff options
author | shangxdy <shang.xiaodong@zte.com.cn> | 2016-07-21 20:02:51 +0800 |
---|---|---|
committer | shangxdy <shang.xiaodong@zte.com.cn> | 2016-07-29 22:03:30 +0800 |
commit | ed2f6006158e120159f4422bc626cc0d5fe5cecf (patch) | |
tree | 8b298fcc1fe52b6e993c600c5967f6ce072bed19 /tosca2heat/tosca-parser/toscaparser/tests | |
parent | 47821301accde5ecc0dc90be2048f479e5857672 (diff) |
tosca-parser support the semantic of substitution mapping
As a template designer,
I want to using node template substitution for model composition or
chaining subsystems.
So firstly tosca-paser should support the substitution mappings
analysis.
Change-Id: I44371795504415ba8cf5a15f7e1d046e3ff00ade
JIRA: PARSER-43
Signed-off-by: shangxdy <shang.xiaodong@zte.com.cn>
Diffstat (limited to 'tosca2heat/tosca-parser/toscaparser/tests')
-rw-r--r-- | tosca2heat/tosca-parser/toscaparser/tests/test_topology_template.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tosca2heat/tosca-parser/toscaparser/tests/test_topology_template.py b/tosca2heat/tosca-parser/toscaparser/tests/test_topology_template.py index 14f2496..f66396e 100644 --- a/tosca2heat/tosca-parser/toscaparser/tests/test_topology_template.py +++ b/tosca2heat/tosca-parser/toscaparser/tests/test_topology_template.py @@ -159,4 +159,4 @@ class TopologyTemplateTest(TestCase): "data/topology_template/system.yaml") system_tosca_template = ToscaTemplate(tpl_path) self.assertIsNotNone(system_tosca_template) - self.assertEqual(len(system_tosca_template.nested_tosca_template), 0) + self.assertEqual(len(system_tosca_template.nested_tosca_templates), 1) |