From 5ca686b59751e3c87740b84108c54fc675a074cf Mon Sep 17 00:00:00 2001 From: Michael Muré Date: Thu, 18 Aug 2022 16:20:36 +0200 Subject: remove file that shouldn't be there --- board/resolver_test.go | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 board/resolver_test.go (limited to 'board/resolver_test.go') diff --git a/board/resolver_test.go b/board/resolver_test.go deleted file mode 100644 index 77bfbe61..00000000 --- a/board/resolver_test.go +++ /dev/null @@ -1,28 +0,0 @@ -package board - -import ( - "fmt" - "testing" - - "github.com/stretchr/testify/require" - - "github.com/MichaelMure/git-bug/bug" - "github.com/MichaelMure/git-bug/entity" - "github.com/MichaelMure/git-bug/identity" - "github.com/MichaelMure/git-bug/repository" -) - -func TestResolvers(t *testing.T) { - repo := repository.NewMockRepo() - - rs := entity.Resolvers{ - &identity.IdentityStub{}: identity.NewStubResolver(), - &identity.Identity{}: identity.NewSimpleResolver(repo), - &bug.Bug{}: bug.NewSimpleResolver(repo), - } - - ide, err := entity.Resolve[identity.Interface](rs, "foo") - require.NoError(t, err) - - fmt.Println(ide) -} -- cgit