aboutsummaryrefslogtreecommitdiffhomepage
path: root/container/executable_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'container/executable_test.go')
-rw-r--r--container/executable_test.go18
1 files changed, 0 insertions, 18 deletions
diff --git a/container/executable_test.go b/container/executable_test.go
deleted file mode 100644
index 486d14dc..00000000
--- a/container/executable_test.go
+++ /dev/null
@@ -1,18 +0,0 @@
-package container_test
-
-import (
- "os"
- "testing"
-
- "hakurei.app/container"
- "hakurei.app/message"
-)
-
-func TestExecutable(t *testing.T) {
- t.Parallel()
- for i := 0; i < 16; i++ {
- if got := container.MustExecutable(message.New(nil)); got != os.Args[0] {
- t.Errorf("MustExecutable: %q, want %q", got, os.Args[0])
- }
- }
-}