Added another test for crop_to_point

pull/487/head
Karl Hobley 2014-07-22 12:36:56 +01:00
rodzic 057fd966c9
commit 3de4bc3a24
1 zmienionych plików z 7 dodań i 0 usunięć

Wyświetl plik

@ -483,6 +483,13 @@ class TestCropToPoint(TestCase):
CropBox(270, 190, 370, 290),
)
def test_basic_no_focal_point(self):
"If focal point is None, it should make one in the centre of the image"
self.assertEqual(
crop_to_point((640, 480), (100, 100), None),
CropBox(270, 190, 370, 290),
)
def test_doesnt_exit_top_left(self):
"Test that the cropbox doesn't exit the image at the top left"
self.assertEqual(