/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

  1. package generate
  2. import (
  3. "os"
  4. "testing"
  5. "github.com/stretchr/testify/assert"
  6. )
  7. func TestMain(m *testing.M) {
  8. retVal := m.Run()
  9. os.Exit(retVal)
  10. }
  11. func TestGetRandomString(t *testing.T) {
  12. randomString, err := GetRandomString(4)
  13. assert.NoError(t, err)
  14. assert.Len(t, randomString, 4)
  15. }