Documentation and tests for config package.

This commit is contained in:
mikestefanello 2021-12-18 10:15:31 -05:00
parent 1fe906a6f9
commit 1fb4d83e0d
2 changed files with 36 additions and 11 deletions

12
config/config_test.go Normal file
View file

@ -0,0 +1,12 @@
package config
import (
"testing"
"github.com/stretchr/testify/require"
)
func TestGetConfig(t *testing.T) {
_, err := GetConfig()
require.NoError(t, err)
}