config_test.go 195 B

123456789101112
  1. package config
  2. import (
  3. "github.com/stretchr/testify/assert"
  4. "testing"
  5. )
  6. func TestCreateDefaultConfig(t *testing.T) {
  7. c := DefaultConfig()
  8. assert.NotNil(t, c, "Create a default config")
  9. }