blob: 1493a190d59b6ef9c58163523f9f1b0f477eebab (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
package commands
import (
"bytes"
"testing"
"github.com/stretchr/testify/require"
"github.com/MichaelMure/git-bug/cache"
"github.com/MichaelMure/git-bug/repository"
)
type testEnv struct {
env *Env
out *bytes.Buffer
}
func newTestEnv(t *testing.T) *testEnv {
t.Helper()
repo := repository.CreateGoGitTestRepo(t, false)
buf := new(bytes.Buffer)
backend, err := cache.NewRepoCache(repo)
require.NoError(t, err)
t.Cleanup(func() {
backend.Close()
})
return &testEnv{
env: &Env{
repo: repo,
backend: backend,
out: out{Writer: buf},
err: out{Writer: buf},
},
out: buf,
}
}
|