From cd847affb79ea6438c9721635724efc6f58e2215 Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Mon, 12 Jan 2015 12:56:17 +0900 Subject: Reorganize source code --- src/util_test.go | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 src/util_test.go (limited to 'src/util_test.go') diff --git a/src/util_test.go b/src/util_test.go deleted file mode 100644 index 814b42ce..00000000 --- a/src/util_test.go +++ /dev/null @@ -1,18 +0,0 @@ -package fzf - -import "testing" - -func TestMax(t *testing.T) { - if Max(-2, 5, 1, 4, 3) != 5 { - t.Error("Invalid result") - } -} - -func TestMin(t *testing.T) { - if Min(2, -3) != -3 { - t.Error("Invalid result") - } - if Min(-2, 5, 1, 4, 3) != -2 { - t.Error("Invalid result") - } -} -- cgit v1.2.3