summaryrefslogtreecommitdiff
path: root/src/util_test.go
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2015-01-12 12:56:17 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2015-01-12 12:56:17 +0900
commitcd847affb79ea6438c9721635724efc6f58e2215 (patch)
treed1e631e3dca8832ee4c495924789f6697c3629cf /src/util_test.go
parent7a2bc2cada971c7a390d09b0afda34780ff56fb6 (diff)
downloadfzf-cd847affb79ea6438c9721635724efc6f58e2215.tar.gz
Reorganize source code
Diffstat (limited to 'src/util_test.go')
-rw-r--r--src/util_test.go18
1 files changed, 0 insertions, 18 deletions
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")
- }
-}