TOSCA: rename sample template file

Sample TOSCA templates are now stored to one location. Move this left over file.

Change-Id: I6cee56addd5699907f063d18f14fbb5c6debc6e2
This commit is contained in:
spzala 2015-05-02 07:07:02 -07:00
parent 66394b802c
commit f2608a0884
3 changed files with 4 additions and 4 deletions

View File

@ -21,20 +21,20 @@ from translator.toscalib.tosca_template import ToscaTemplate
class ToscaTemplateOutputOrderTest(TestCase):
def test_translate_output_order(self):
tosca_yaml_file = "data/tosca_single_server.yaml"
tosca_yaml = "../toscalib/tests/data/tosca_single_server.yaml"
tosca_tpl = os.path.join(
os.path.dirname(os.path.abspath(__file__)),
tosca_yaml_file)
tosca_yaml)
parsed_params = {'cpus': 2}
tosca = ToscaTemplate(tosca_tpl)
translate = TOSCATranslator(tosca, parsed_params)
hot_translated_output = translate.translate()
# load expected hot yaml file
hot_yaml_file = "data/hot_output/hot_single_server.yaml"
hot_yaml = "../toscalib/tests/data/hot_output/hot_single_server.yaml"
hot_tpl = os.path.join(
os.path.dirname(os.path.abspath(__file__)),
hot_yaml_file)
hot_yaml)
with open(hot_tpl) as f:
hot_expected_output = f.read()