From 37a2afd6f970c73680209e212cb425ac2c92dbec Mon Sep 17 00:00:00 2001
From: Arthur de Jong <arthur@arthurdejong.org>
Date: Fri, 7 Jun 2013 18:24:14 +0200
Subject: The robustness test were moved to the general tests

---
 tests/test_iso7064.doctest | 16 ----------------
 1 file changed, 16 deletions(-)

diff --git a/tests/test_iso7064.doctest b/tests/test_iso7064.doctest
index 7ccbda2..58e2adb 100644
--- a/tests/test_iso7064.doctest
+++ b/tests/test_iso7064.doctest
@@ -66,19 +66,3 @@ These normal tests of Mod 37, 2 should just work
 
 >>> mod_37_2.calc_check_digit('G123498654321')
 'H'
-
-
-Furthermore the is_valid() method should be fairly robust against invalid
-junk passed:
-
->>> testvalues = ( None, '*&^%$', False, object() )
->>> [ x for x in testvalues if mod_11_10.is_valid(x) ]
-[]
->>> [ x for x in testvalues if mod_11_2.is_valid(x) ]
-[]
->>> [ x for x in testvalues if mod_37_2.is_valid(x) ]
-[]
->>> [ x for x in testvalues if mod_37_36.is_valid(x) ]
-[]
->>> [ x for x in testvalues if mod_97_10.is_valid(x) ]
-[]
-- 
cgit v1.2.3