X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/882d8795c6ff65c02f2657e596391748d1b6b7f5:/tests/data/cases/module_docstring_1.py..refs/heads/master:/.vim/bundle/black/tests/data/cases/static/git-favicon.png diff --git a/tests/data/cases/module_docstring_1.py b/tests/data/cases/module_docstring_1.py deleted file mode 100644 index d5897b4..0000000 --- a/tests/data/cases/module_docstring_1.py +++ /dev/null @@ -1,26 +0,0 @@ -# flags: --preview -"""Single line module-level docstring should be followed by single newline.""" - - - - -a = 1 - - -"""I'm just a string so should be followed by 2 newlines.""" - - - - -b = 2 - -# output -"""Single line module-level docstring should be followed by single newline.""" - -a = 1 - - -"""I'm just a string so should be followed by 2 newlines.""" - - -b = 2