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
|
package commands_test
import (
"path/filepath"
"strings"
"testing"
"github.com/stretchr/testify/require"
)
func newTestEnvAndUser(t *testing.T) (*testEnv, string) {
t.Helper()
testEnv := newTestEnv(t)
testEnv.cmd.SetArgs(
[]string{
"user",
"create",
"--non-interactive",
"-n John Doe",
"-e jdoe@example.com",
})
testEnv.Execute(t)
userID := strings.TrimSpace(testEnv.out.String())
testEnv.out.Reset()
return testEnv, userID
}
func TestUserCreateCommand(t *testing.T) {
testEnv, userID := newTestEnvAndUser(t)
t.Log("CWD:", testEnv.cwd)
require.FileExists(t, filepath.Join(testEnv.cwd, ".git", "refs", "identities", userID))
require.FileExists(t, filepath.Join(testEnv.cwd, ".git", "git-bug", "identity-cache"))
}
|