From 62063db1289d328fa7dbb893ddefdb04b8904d82 Mon Sep 17 00:00:00 2001 From: Niels Serup Date: Wed, 8 Aug 2012 14:12:38 +0200 Subject: [PATCH] More colour box tests. --- tests/colourboxes_tests.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/tests/colourboxes_tests.py b/tests/colourboxes_tests.py index 48bcbca..fa621c6 100644 --- a/tests/colourboxes_tests.py +++ b/tests/colourboxes_tests.py @@ -8,9 +8,12 @@ class ColourboxesTest(unittest.TestCase): def test_generation(self): for args in ((1, 1), (2, 2), - (3, 3)): + (3, 3), + (4, 6)): boxes = generate_colour_boxes(*args) - print(boxes) + print() + for box in boxes: + print(box) self.assertTrue(makes_all_wells_white(boxes)) if __name__ == '__main__':