1// +build !consulent
2
3package autoconf
4
5import (
6	"testing"
7)
8
9// mockedEnterpriseConfig is pretty much just a stub in OSS
10// It does contain an enterprise config for compatibility
11// purposes but that in and of itself is just a stub.
12type mockedEnterpriseConfig struct {
13	EnterpriseConfig
14}
15
16func newMockedEnterpriseConfig(t *testing.T) *mockedEnterpriseConfig {
17	return &mockedEnterpriseConfig{}
18}
19