X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/80bd2b3134b4f01da4e279d040a224326b3577e5..12a095f038f948b29ab6ee83b5e659dc1d55f5a5:/tests/string_quotes.py diff --git a/tests/string_quotes.py b/tests/string_quotes.py index 1080aaf..f2d720b 100644 --- a/tests/string_quotes.py +++ b/tests/string_quotes.py @@ -15,6 +15,9 @@ f'''This is a triple-quoted {f}-string''' f'MOAR {" ".join([])}' f"MOAR {' '.join([])}" r"raw string ftw" +r'Date d\'expiration:(.*)' +r'Tricky "quote' +r'Not-so-tricky \"quote' # output @@ -35,3 +38,6 @@ f"""This is a triple-quoted {f}-string""" f'MOAR {" ".join([])}' f"MOAR {' '.join([])}" r"raw string ftw" +r"Date d\'expiration:(.*)" +r'Tricky "quote' +r"Not-so-tricky \"quote"