aboutsummaryrefslogtreecommitdiff
path: root/tests/functional/i/inconsistent/inconsistent_quotes2.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/functional/i/inconsistent/inconsistent_quotes2.py')
-rw-r--r--tests/functional/i/inconsistent/inconsistent_quotes2.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/functional/i/inconsistent/inconsistent_quotes2.py b/tests/functional/i/inconsistent/inconsistent_quotes2.py
new file mode 100644
index 000000000..d9b157e34
--- /dev/null
+++ b/tests/functional/i/inconsistent/inconsistent_quotes2.py
@@ -0,0 +1,10 @@
+"""Tests for inconsistent quoting strategy.
+
+In this file, single quotes are the majority quote delimiter.
+"""
+
+FIRST_STRING = "double-quoted string" # [inconsistent-quotes]
+SECOND_STRING = 'single-quoted string'
+THIRD_STRING = 'another single-quoted string'
+FOURTH_STRING = 'yet another single-quoted string'
+FIFTH_STRING = "double-quoted string with an unescaped 'single quote'"