diff --git a/pkg/composableschemadsl/parser/parser_test.go b/pkg/composableschemadsl/parser/parser_test.go index 1d3dc4797d..066e95408c 100644 --- a/pkg/composableschemadsl/parser/parser_test.go +++ b/pkg/composableschemadsl/parser/parser_test.go @@ -123,6 +123,12 @@ func TestParser(t *testing.T) { {"arrow illegal function test", "arrowillegalfunc"}, {"caveat with keyword parameter test", "caveatwithkeywordparam"}, {"local imports test", "localimport"}, + {"local imports with keyword in import path test", "localimport_import_path_with_keyword"}, + {"local imports with keyword in identifiers test", "localimport_keyword_in_identifiers"}, + {"local imports with malformed identifiers set test", "localimport_malformed_identifier_set"}, + {"local imports with malformed import path test", "localimport_malformed_import_path"}, + {"local imports with path missing leading period test", "localimport_path_missing_leading_period"}, + {"local imports with typo in import separator test", "localimport_typo_in_import_separator"}, } for _, test := range parserTests {