Files
2025-06-27 20:03:37 -07:00

18 lines
268 B
Go

package dcs
import (
"testing"
"github.com/stretchr/testify/require"
)
func TestTestDCs(t *testing.T) {
require.NotEmpty(t, Prod())
// Check copying.
a := Test().Options
a[0].IPAddress = "10"
b := Test().Options
require.NotEqual(t, "10", b[0].IPAddress)
}