summaryrefslogtreecommitdiffstats
path: root/contrib/tools/cython/Cython/Build/Tests/TestStripLiterals.py
diff options
context:
space:
mode:
authoralexv-smirnov <[email protected]>2023-03-28 22:25:04 +0300
committeralexv-smirnov <[email protected]>2023-03-28 22:25:04 +0300
commitb8a17f9b1c166d2e9a26b99348a4c29d972caf55 (patch)
tree1a2d881f1a9452b9c6103dbf69d73da7624e98e5 /contrib/tools/cython/Cython/Build/Tests/TestStripLiterals.py
parent25659221f18577ea38430a8ec3349836f5626b6a (diff)
Revert ymake build from ydb oss export
Diffstat (limited to 'contrib/tools/cython/Cython/Build/Tests/TestStripLiterals.py')
-rw-r--r--contrib/tools/cython/Cython/Build/Tests/TestStripLiterals.py57
1 files changed, 0 insertions, 57 deletions
diff --git a/contrib/tools/cython/Cython/Build/Tests/TestStripLiterals.py b/contrib/tools/cython/Cython/Build/Tests/TestStripLiterals.py
deleted file mode 100644
index a7572a50838..00000000000
--- a/contrib/tools/cython/Cython/Build/Tests/TestStripLiterals.py
+++ /dev/null
@@ -1,57 +0,0 @@
-from Cython.Build.Dependencies import strip_string_literals
-
-from Cython.TestUtils import CythonTest
-
-class TestStripLiterals(CythonTest):
-
- def t(self, before, expected):
- actual, literals = strip_string_literals(before, prefix="_L")
- self.assertEqual(expected, actual)
- for key, value in literals.items():
- actual = actual.replace(key, value)
- self.assertEqual(before, actual)
-
- def test_empty(self):
- self.t("", "")
-
- def test_single_quote(self):
- self.t("'x'", "'_L1_'")
-
- def test_double_quote(self):
- self.t('"x"', '"_L1_"')
-
- def test_nested_quotes(self):
- self.t(""" '"' "'" """, """ '_L1_' "_L2_" """)
-
- def test_triple_quote(self):
- self.t(" '''a\n''' ", " '''_L1_''' ")
-
- def test_backslash(self):
- self.t(r"'a\'b'", "'_L1_'")
- self.t(r"'a\\'", "'_L1_'")
- self.t(r"'a\\\'b'", "'_L1_'")
-
- def test_unicode(self):
- self.t("u'abc'", "u'_L1_'")
-
- def test_raw(self):
- self.t(r"r'abc\\'", "r'_L1_'")
-
- def test_raw_unicode(self):
- self.t(r"ru'abc\\'", "ru'_L1_'")
-
- def test_comment(self):
- self.t("abc # foo", "abc #_L1_")
-
- def test_comment_and_quote(self):
- self.t("abc # 'x'", "abc #_L1_")
- self.t("'abc#'", "'_L1_'")
-
- def test_include(self):
- self.t("include 'a.pxi' # something here",
- "include '_L1_' #_L2_")
-
- def test_extern(self):
- self.t("cdef extern from 'a.h': # comment",
- "cdef extern from '_L1_': #_L2_")
-