X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/a9eab85f226df3b3070aca122d089dbd62b42b9c..00e7e12a3a412ea386806d5d4eeaed345e912940:/tests/data/string_prefixes.py?ds=sidebyside diff --git a/tests/data/string_prefixes.py b/tests/data/string_prefixes.py index 0ca3686..9ddc2b5 100644 --- a/tests/data/string_prefixes.py +++ b/tests/data/string_prefixes.py @@ -6,6 +6,17 @@ B"hello" r"hello" fR"hello" + +def docstring_singleline(): + R"""2020 was one hell of a year. The good news is that we were able to""" + + +def docstring_multiline(): + R""" + clear out all of the issues opened in that time :p + """ + + # output @@ -16,3 +27,13 @@ f"hello {name}" b"hello" r"hello" fR"hello" + + +def docstring_singleline(): + R"""2020 was one hell of a year. The good news is that we were able to""" + + +def docstring_multiline(): + R""" + clear out all of the issues opened in that time :p + """