Searched refs:check_shorten (Results 1 – 1 of 1) sorted by relevance
/external/python/cpython3/Lib/test/ |
D | test_textwrap.py | 1024 def check_shorten(self, text, width, expect, **kwargs): member in ShortenTestCase 1032 self.check_shorten(text, 18, "Hello there, [...]") 1033 self.check_shorten(text, len(text), text) 1034 self.check_shorten(text, len(text) - 1, 1041 self.check_shorten(text, 17, "Hello there,$$", placeholder='$$') 1042 self.check_shorten(text, 18, "Hello there, how$$", placeholder='$$') 1043 self.check_shorten(text, 18, "Hello there, $$", placeholder=' $$') 1044 self.check_shorten(text, len(text), text, placeholder='$$') 1045 self.check_shorten(text, len(text) - 1, 1050 self.check_shorten("", 6, "") [all …]
|