2023-03-28 18:39:22 +00:00
|
|
|
// Copyright (c) HashiCorp, Inc.
|
|
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
|
2021-11-16 18:04:01 +00:00
|
|
|
//go:build !consulent
|
2021-05-17 20:01:32 +00:00
|
|
|
// +build !consulent
|
|
|
|
|
|
|
|
package autoconf
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
2023-08-23 16:53:44 +00:00
|
|
|
// mockedEnterpriseConfig is pretty much just a stub in CE.
|
2021-05-17 20:01:32 +00:00
|
|
|
// It does contain an enterprise config for compatibility
|
|
|
|
// purposes but that in and of itself is just a stub.
|
|
|
|
type mockedEnterpriseConfig struct {
|
|
|
|
EnterpriseConfig
|
|
|
|
}
|
|
|
|
|
|
|
|
func newMockedEnterpriseConfig(t *testing.T) *mockedEnterpriseConfig {
|
|
|
|
return &mockedEnterpriseConfig{}
|
|
|
|
}
|