diff --git a/src/test_doc2tosca.py b/src/test_doc2tosca.py new file mode 100644 index 0000000000000000000000000000000000000000..7b6a5f73bd1a207f3ac716f07bd31a54c06398da --- /dev/null +++ b/src/test_doc2tosca.py @@ -0,0 +1,13 @@ +#!/bin/bash +import doc2tosca as d2t + +def test_match_definition_incipit(): + assert d2t.match_definition_incipit("tosca.") == True + assert d2t.match_definition_incipit("tosca.definitions") == True + assert d2t.match_definition_incipit("") == False + +def test_is_tosca_def(): + assert False + + +