aboutsummaryrefslogtreecommitdiffhomepage
path: root/sandbox/executable_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'sandbox/executable_test.go')
-rw-r--r--sandbox/executable_test.go17
1 files changed, 0 insertions, 17 deletions
diff --git a/sandbox/executable_test.go b/sandbox/executable_test.go
deleted file mode 100644
index 8a118643..00000000
--- a/sandbox/executable_test.go
+++ /dev/null
@@ -1,17 +0,0 @@
-package sandbox_test
-
-import (
- "os"
- "testing"
-
- "git.gensokyo.uk/security/hakurei/sandbox"
-)
-
-func TestExecutable(t *testing.T) {
- for i := 0; i < 16; i++ {
- if got := sandbox.MustExecutable(); got != os.Args[0] {
- t.Errorf("MustExecutable: %q, want %q",
- got, os.Args[0])
- }
- }
-}