aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/go/lib1/lib1_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'examples/go/lib1/lib1_test.go')
-rw-r--r--examples/go/lib1/lib1_test.go14
1 files changed, 0 insertions, 14 deletions
diff --git a/examples/go/lib1/lib1_test.go b/examples/go/lib1/lib1_test.go
deleted file mode 100644
index 8eb88a0aca..0000000000
--- a/examples/go/lib1/lib1_test.go
+++ /dev/null
@@ -1,14 +0,0 @@
-package lib1
-
-import (
- "testing"
-)
-
-func TestFib(t *testing.T) {
- got := Fib(5)
- want := 8
-
- if got != want {
- t.Fatalf("got %d want %d", got, want)
- }
-}