summaryrefslogtreecommitdiffstats
path: root/dovetail/tests/unit/test_testcase.py
diff options
context:
space:
mode:
Diffstat (limited to 'dovetail/tests/unit/test_testcase.py')
-rw-r--r--dovetail/tests/unit/test_testcase.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/dovetail/tests/unit/test_testcase.py b/dovetail/tests/unit/test_testcase.py
index e3f2a64c..b915556c 100644
--- a/dovetail/tests/unit/test_testcase.py
+++ b/dovetail/tests/unit/test_testcase.py
@@ -163,6 +163,13 @@ class TestcaseTesting(unittest.TestCase):
self.assertEquals('tempest_smoke_serial', result)
+ def test_vnf_type(self):
+ testcase = tcase.OnapVtpTestcase(self.testcase_yaml)
+
+ result = testcase.vnf_type()
+
+ self.assertEquals('tosca', result)
+
def test_passed(self):
testcase = tcase.Testcase(self.testcase_yaml)