X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/882d8795c6ff65c02f2657e596391748d1b6b7f5:/tests/data/cases/fstring.py..refs/heads/master:/.vim/bundle/black/tests/data/cases/static/git-logo.png diff --git a/tests/data/cases/fstring.py b/tests/data/cases/fstring.py deleted file mode 100644 index 6056030..0000000 --- a/tests/data/cases/fstring.py +++ /dev/null @@ -1,25 +0,0 @@ -f"f-string without formatted values is just a string" -f"{{NOT a formatted value}}" -f"{{NOT 'a' \"formatted\" \"value\"}}" -f"some f-string with {a} {few():.2f} {formatted.values!r}" -f'some f-string with {a} {few(""):.2f} {formatted.values!r}' -f"{f'''{'nested'} inner'''} outer" -f"\"{f'{nested} inner'}\" outer" -f"space between opening braces: { {a for a in (1, 2, 3)}}" -f'Hello \'{tricky + "example"}\'' -f"Tried directories {str(rootdirs)} \ -but none started with prefix {parentdir_prefix}" - -# output - -f"f-string without formatted values is just a string" -f"{{NOT a formatted value}}" -f'{{NOT \'a\' "formatted" "value"}}' -f"some f-string with {a} {few():.2f} {formatted.values!r}" -f'some f-string with {a} {few(""):.2f} {formatted.values!r}' -f"{f'''{'nested'} inner'''} outer" -f"\"{f'{nested} inner'}\" outer" -f"space between opening braces: { {a for a in (1, 2, 3)}}" -f'Hello \'{tricky + "example"}\'' -f"Tried directories {str(rootdirs)} \ -but none started with prefix {parentdir_prefix}"