From cf856f9f28e4a2806fa835fb4e0e54582c0a2edd Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Wed, 5 Sep 2001 02:26:26 +0000 Subject: [PATCH] Add a test for the final branch in repr.Repr.repr1(), which deals with a default repr() that's longer than 20 characters. --- Lib/test/test_repr.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Lib/test/test_repr.py b/Lib/test/test_repr.py index 1281b1f2766..c23fe77135e 100644 --- a/Lib/test/test_repr.py +++ b/Lib/test/test_repr.py @@ -78,6 +78,11 @@ class ReprTests(unittest.TestCase): i3 = ClassWithFailingRepr() eq(r(i3), (""%id(i3))) + s = r(ClassWithFailingRepr) + self.failUnless(s.startswith("")) + self.failUnless(s.find("...") == 8) + def test_file(self): fp = open(unittest.__file__) self.failUnless(repr(fp).startswith(