aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/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 /internal/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 'internal/stub/call_test.go')
-rw-r--r--internal/stub/call_test.go27
1 files changed, 27 insertions, 0 deletions
diff --git a/internal/stub/call_test.go b/internal/stub/call_test.go
new file mode 100644
index 00000000..76705c8d
--- /dev/null
+++ b/internal/stub/call_test.go
@@ -0,0 +1,27 @@
+package stub_test
+
+import (
+ "reflect"
+ "testing"
+
+ "hakurei.app/internal/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)
+ }
+ })
+}