mirror of
https://github.com/OliveTin/OliveTin
synced 2025-12-13 09:35:37 +00:00
13 lines
195 B
Go
13 lines
195 B
Go
package config
|
|
|
|
import (
|
|
"github.com/stretchr/testify/assert"
|
|
"testing"
|
|
)
|
|
|
|
func TestCreateDefaultConfig(t *testing.T) {
|
|
c := DefaultConfig()
|
|
|
|
assert.NotNil(t, c, "Create a default config")
|
|
}
|