From bac583f89edd1360150143ff51f7264c01aa69ec Mon Sep 17 00:00:00 2001 From: Ophestra Date: Tue, 17 Mar 2026 16:09:14 +0900 Subject: internal/stub: move from container This package solves a very specific stubbing use case, in a less than elegant manner. Signed-off-by: Ophestra --- internal/stub/call_test.go | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 internal/stub/call_test.go (limited to 'internal/stub/call_test.go') 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) + } + }) +} -- cgit v1.3.1