aboutsummaryrefslogtreecommitdiffhomepage
path: root/sandbox/executable_test.go
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2025-07-02 21:23:55 +0900
committerOphestra <cat@gensokyo.uk>2025-07-02 21:23:55 +0900
commita1d98823f8d17b49b432508d071b62ccd426f1ce (patch)
treecacbe2d42f9ff3fd49b455e849770840e34d076a /sandbox/executable_test.go
parent255b77d91dc40736b7bbd7d96b22500076b098e5 (diff)
hakurei: move container toplevel
Signed-off-by: Ophestra <cat@gensokyo.uk>
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])
- }
- }
-}