X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/557b54aa60e9abbb93e5737512d9963e640f2d1f..05e1fbf27d93df36b09c560791ad46c6ce3eb518:/tests/data/docstring.py?ds=sidebyside

diff --git a/tests/data/docstring.py b/tests/data/docstring.py
index ee6d0c0..96bcf52 100644
--- a/tests/data/docstring.py
+++ b/tests/data/docstring.py
@@ -102,7 +102,7 @@ def and_this():
   "hey yah"'''
 
 
-def empty():
+def multiline_whitespace():
     '''
     
     
@@ -111,11 +111,11 @@ def empty():
     '''
 
 
-def oneline_empty():
+def oneline_whitespace():
     '''      '''
 
 
-def oneline_nothing():
+def empty():
     """"""
 
 
@@ -174,6 +174,20 @@ def multiline_backslash_2():
   hey there \ '''
 
 
+def multiline_backslash_3():
+  '''
+  already escaped \\ '''
+
+
+def my_god_its_full_of_stars_1():
+    "I'm sorry Dave\u2001"
+
+
+# the space below is actually a \u2001, removed in output
+def my_god_its_full_of_stars_2():
+    "I'm sorry Dave "
+
+
 # output
 
 class MyClass:
@@ -279,16 +293,16 @@ def and_this():
     "hey yah"'''
 
 
-def empty():
+def multiline_whitespace():
     """ """
 
 
-def oneline_empty():
+def oneline_whitespace():
     """ """
 
 
-def oneline_nothing():
-    """ """
+def empty():
+    """"""
 
 
 def single_quotes():
@@ -347,3 +361,17 @@ def multiline_backslash_1():
 def multiline_backslash_2():
     """
     hey there \ """
+
+
+def multiline_backslash_3():
+    """
+    already escaped \\"""
+
+
+def my_god_its_full_of_stars_1():
+    "I'm sorry Dave\u2001"
+
+
+# the space below is actually a \u2001, removed in output
+def my_god_its_full_of_stars_2():
+    "I'm sorry Dave"