From 0becd1dccbd9afb45f473a53d36a7a3fca73dbc2 Mon Sep 17 00:00:00 2001 From: Rick Winfrey Date: Tue, 6 Jun 2017 17:08:33 -0700 Subject: [PATCH] String test fixture --- test/fixtures/python/string.A.py | 10 ++++++++++ test/fixtures/python/string.B.py | 10 ++++++++++ 2 files changed, 20 insertions(+) create mode 100644 test/fixtures/python/string.A.py create mode 100644 test/fixtures/python/string.B.py diff --git a/test/fixtures/python/string.A.py b/test/fixtures/python/string.A.py new file mode 100644 index 000000000..8a842422c --- /dev/null +++ b/test/fixtures/python/string.A.py @@ -0,0 +1,10 @@ +"I'm ok" +'"ok"' +r'hi' +ur"bye" +b'sup' +`1` +"\\" +"/" +"multiline \ +string" diff --git a/test/fixtures/python/string.B.py b/test/fixtures/python/string.B.py new file mode 100644 index 000000000..5ad4431de --- /dev/null +++ b/test/fixtures/python/string.B.py @@ -0,0 +1,10 @@ +"other \ +multiline" +"I'm ok" +'"goodbye"' +r'yo' +ur"hiii" +b'gg' +`2` +"/" +