mirror of
https://github.com/MichaelMure/git-bug.git
synced 2024-12-17 04:48:58 +03:00
15 lines
264 B
Go
15 lines
264 B
Go
package usercmd
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"github.com/MichaelMure/git-bug/commands/bug/testenv"
|
|
)
|
|
|
|
func TestUserNewCommand(t *testing.T) {
|
|
_, userID := testenv.NewTestEnvAndUser(t)
|
|
require.Regexp(t, "[0-9a-f]{64}", userID)
|
|
}
|