Bases: heat_integrationtests.functional.functional_base.FunctionalTestsBase
- 
nested_template = '\nheat_template_version: 2013-05-23\nparameters:\n  length:\n    type: string\n    default: 50\nresources:\n  random1:\n    type: OS::Heat::RandomString\n    properties:\n      length: {get_param: length}\noutputs:\n  random1_value:\n    value: {get_resource: random1}\n'
 
- 
scenarios = [('none', {'expect2': 40, 'default': None, 'expect1': 50, 'param': None, 'temp_def': True}), ('default', {'expect2': 12, 'default': 12, 'expect1': 12, 'param': None, 'temp_def': True}), ('both', {'expect2': 15, 'default': 12, 'expect1': 12, 'param': 15, 'temp_def': True}), ('no_temp_default', {'expect2': 12, 'default': 12, 'expect1': 12, 'param': None, 'temp_def': False})]
 
- 
setUp()[source]
 
- 
template = '\nheat_template_version: 2013-05-23\nparameters:\n  length:\n    type: string\n    default: 40\nresources:\n  random1:\n    type: nested_random.yaml\n  random2:\n    type: OS::Heat::RandomString\n    properties:\n      length: {get_param: length}\noutputs:\n  random1:\n    value: {get_attr: [random1, random1_value]}\n  random2:\n    value: {get_resource: random2}\n'
 
- 
test_defaults()[source]