/modules/generate/generate_test.go
https://codeberg.org/tklein23/gogs-gitea · Go · 20 lines · 15 code · 5 blank · 0 comment · 0 complexity · 15a6bc761b94a78f73d3231344e26d0c MD5 · raw file
- package generate
- import (
- "os"
- "testing"
- "github.com/stretchr/testify/assert"
- )
- func TestMain(m *testing.M) {
- retVal := m.Run()
- os.Exit(retVal)
- }
- func TestGetRandomString(t *testing.T) {
- randomString, err := GetRandomString(4)
- assert.NoError(t, err)
- assert.Len(t, randomString, 4)
- }