From: Barry Warsaw Date: Sat, 29 Nov 1997 00:25:30 +0000 (+0000) Subject: Added tests of strop.replace() X-Git-Tag: v1.5b2~159 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9181190c76454152eed4471321dccd7d0b7ac5e9;p=python Added tests of strop.replace() --- diff --git a/Lib/test/test_strop.py b/Lib/test/test_strop.py index efc98ff04e..9243ff48ef 100644 --- a/Lib/test/test_strop.py +++ b/Lib/test/test_strop.py @@ -67,6 +67,15 @@ test('rstrip', ' hello ', ' hello') test('swapcase', 'HeLLo cOmpUteRs', 'hEllO CoMPuTErS') test('translate', 'xyzabcdef', 'xyzxyz', transtable, 'def') +test('replace', 'one!two!three!', 'one@two!three!', '!', '@', 1) +test('replace', 'one!two!three!', 'one@two@three!', '!', '@', 2) +test('replace', 'one!two!three!', 'one@two@three@', '!', '@', 3) +test('replace', 'one!two!three!', 'one@two@three@', '!', '@', 4) +test('replace', 'one!two!three!', 'one@two@three@', '!', '@', 0) +test('replace', 'one!two!three!', 'one@two@three@', '!', '@') +test('replace', 'one!two!three!', 'one!two!three!', 'x', '@') +test('replace', 'one!two!three!', 'one!two!three!', 'x', '@', 2) + strop.whitespace strop.lowercase strop.uppercase