aboutsummaryrefslogtreecommitdiffhomepage
path: root/container/stub/call_test.go
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2026-03-17 16:09:14 +0900
committerOphestra <cat@gensokyo.uk>2026-03-17 16:09:14 +0900
commitbac583f89edd1360150143ff51f7264c01aa69ec (patch)
tree47914efe1ae9fae256ef93725097bdb9255c03d5 /container/stub/call_test.go
parent722989c68256469963aee963bed9c6ab4bf55b67 (diff)
internal/stub: move from container
This package solves a very specific stubbing use case, in a less than elegant manner. Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'container/stub/call_test.go')
-rw-r--r--container/stub/call_test.go27
1 files changed, 0 insertions, 27 deletions
diff --git a/container/stub/call_test.go b/container/stub/call_test.go
deleted file mode 100644
index db0b59dc..00000000
--- a/container/stub/call_test.go
+++ /dev/null
@@ -1,27 +0,0 @@
-package stub_test
-
-import (
- "reflect"
- "testing"
-
- "hakurei.app/container/stub"
-)
-
-func TestCallError(t *testing.T) {
- t.Parallel()
-
- t.Run("contains false", func(t *testing.T) {
- t.Parallel()
- if err := new(stub.Call).Error(true, false, true); !reflect.DeepEqual(err, stub.ErrCheck) {
- t.Errorf("Error: %#v, want %#v", err, stub.ErrCheck)
- }
- })
-
- t.Run("passthrough", func(t *testing.T) {
- t.Parallel()
- wantErr := stub.UniqueError(0xbabe)
- if err := (&stub.Call{Err: wantErr}).Error(true); !reflect.DeepEqual(err, wantErr) {
- t.Errorf("Error: %#v, want %#v", err, wantErr)
- }
- })
-}