Eat some low hanging fruit... let the test suite run.

This commit is contained in:
Gregory P. Smith 2007-08-22 19:23:36 +00:00
parent ea03c11655
commit 0e6012cbf3
4 changed files with 12 additions and 7 deletions

View file

@ -16,6 +16,7 @@ except ImportError:
from .test_all import verbose
letters = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'
#----------------------------------------------------------------------
@ -45,7 +46,7 @@ class SimpleQueueTestCase(unittest.TestCase):
print("before appends" + '-' * 30)
pprint(d.stat())
for x in string.letters:
for x in letters:
d.append(x * 40)
assert len(d) == 52
@ -117,7 +118,7 @@ class SimpleQueueTestCase(unittest.TestCase):
print("before appends" + '-' * 30)
pprint(d.stat())
for x in string.letters:
for x in letters:
d.append(x * 40)
assert len(d) == 52