blob: 4cde25b77946309ab4d04eff3f5eaafae22eca5e [file] [log] [blame]
package clusterconfig
import (
"testing"
"github.com/stretchr/testify/require"
)
func TestNewFromEmbeddedConfig_HappyPath(t *testing.T) {
cfg, err := NewFromEmbeddedConfig()
require.NoError(t, err)
require.Equal(t, "https://skia.googlesource.com/k8s-config", cfg.Repo)
}