mirror of
https://github.com/spf13/viper
synced 2025-05-08 13:17:19 +00:00
14 lines
189 B
Go
14 lines
189 B
Go
|
package remote
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/spf13/viper"
|
||
|
)
|
||
|
|
||
|
func Test_init(t *testing.T) {
|
||
|
if viper.RemoteConfig == nil {
|
||
|
t.Fatal("viper.RemoteConfig() is nil, want non nil")
|
||
|
}
|
||
|
}
|