X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/f71db23824a25300618dd0625085ade8d2b3a7a8..1d7163957a34e8f071aaf9ac59467b912449fb07:/tests/data/string_prefixes.py

diff --git a/tests/data/string_prefixes.py b/tests/data/string_prefixes.py
index fbad5e0..9ddc2b5 100644
--- a/tests/data/string_prefixes.py
+++ b/tests/data/string_prefixes.py
@@ -3,12 +3,37 @@
 name = R"Łukasz"
 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
+    """
+
 
 # output
 
 
 #!/usr/bin/env python3.6
 
-name = r"Łukasz"
+name = R"Łukasz"
 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
+    """