From: Guido van Rossum Date: Tue, 8 Oct 1996 14:07:56 +0000 (+0000) Subject: Simple test module for strop. X-Git-Tag: v1.4~139 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=edaf1c931cb82bf8d27d78240eb7a30b0eb1a797;p=python Simple test module for strop. --- diff --git a/Lib/test/test_strop.py b/Lib/test/test_strop.py new file mode 100644 index 0000000000..5b2ddfb3d8 --- /dev/null +++ b/Lib/test/test_strop.py @@ -0,0 +1,21 @@ +import strop, sys + +def test(name, input, output): + f = getattr(strop, name) + try: + value = f(input) + except: + value = sys.exc_type + print sys.exc_value + if value != output: + print f, `input`, `output`, `value` + +test('atoi', " 1 ", 1) +test('atoi', " 1x", ValueError) +test('atoi', " x1 ", ValueError) +test('atol', " 1 ", 1L) +test('atol', " 1x ", ValueError) +test('atol', " x1 ", ValueError) +test('atof', " 1 ", 1.0) +test('atof', " 1x ", ValueError) +test('atof', " x1 ", ValueError)