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 --- container/stub/call_test.go | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 container/stub/call_test.go (limited to 'container/stub/call_test.go') 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) - } - }) -} -- cgit v1.3.1