11 lines
222 B
Go
11 lines
222 B
Go
|
package config_test
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func TestDefault(t *testing.T) {
|
||
|
// config.Default is parsed in config.init(), which panics on error.
|
||
|
// so just getting this far means that at least it parsed successfully.
|
||
|
}
|