diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/quotest.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/quotest.cpp b/tests/quotest.cpp index c2c50df2..4663d34a 100644 --- a/tests/quotest.cpp +++ b/tests/quotest.cpp @@ -667,6 +667,7 @@ TEST_IMPL(visitResources) QUrl invalidUrl { "https://" }; invalidUrl.setAuthority("---:@@@"); const Uri emptyUri {}, uriFromEmptyUrl {}, + bareSigil { QStringLiteral("#") }, invalidMatrixUri { QStringLiteral("matrix:&invalid@") }, matrixUriFromInvalidUrl { invalidUrl }; @@ -675,6 +676,10 @@ TEST_IMPL(visitResources) clog << "Empty Matrix URI test failed" << endl; FAIL_TEST(); } + if (bareSigil.isValid()) { + clog << "Bare sigil URI test failed" << endl; + FAIL_TEST(); + } if (matrixUriFromInvalidUrl.isEmpty() || matrixUriFromInvalidUrl.isValid()) { clog << "Invalid Matrix URI test failed" << endl; FAIL_TEST(); |