From 6ea511f0580b279d10d08ba5614a8650b9612cf7 Mon Sep 17 00:00:00 2001 From: Tomas Aparicio Date: Sat, 30 Jan 2016 15:14:42 +0000 Subject: [PATCH] feat(test): resize only by height o width --- resize_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/resize_test.go b/resize_test.go index 80544f7..7b4759a 100644 --- a/resize_test.go +++ b/resize_test.go @@ -37,6 +37,8 @@ func TestResizeVerticalImage(t *testing.T) { {JPEG, Options{Width: 800, Height: 600}}, {JPEG, Options{Width: 1000, Height: 1000}}, {JPEG, Options{Width: 1000, Height: 1500}}, + {JPEG, Options{Width: 1000}}, + {JPEG, Options{Height: 1500}}, {JPEG, Options{Width: 100, Height: 50}}, {JPEG, Options{Width: 2000, Height: 2000}}, {JPEG, Options{Width: 500, Height: 1000}},