summaryrefslogtreecommitdiffstats
path: root/tests/snippets/python/test_fstring_04b.txt
diff options
context:
space:
mode:
Diffstat (limited to 'tests/snippets/python/test_fstring_04b.txt')
-rw-r--r--tests/snippets/python/test_fstring_04b.txt13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/snippets/python/test_fstring_04b.txt b/tests/snippets/python/test_fstring_04b.txt
new file mode 100644
index 0000000..40e1ea0
--- /dev/null
+++ b/tests/snippets/python/test_fstring_04b.txt
@@ -0,0 +1,13 @@
+---input---
+f"{'quoted string'}"
+
+---tokens---
+'f' Literal.String.Affix
+'"' Literal.String.Double
+'{' Literal.String.Interpol
+"'" Literal.String.Single
+'quoted string' Literal.String.Single
+"'" Literal.String.Single
+'}' Literal.String.Interpol
+'"' Literal.String.Double
+'\n' Text.Whitespace