11 lines
135 B
Go
11 lines
135 B
Go
|
package localconfig
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func TestInit(t *testing.T) {
|
||
|
var creds Creds
|
||
|
creds.Init("localconfig_test")
|
||
|
}
|