mirror of
https://github.com/spf13/viper
synced 2025-05-07 12:47:18 +00:00
13 lines
189 B
Go
13 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")
|
|
}
|
|
}
|