TestMultiDocGeneric_ValidSubnetsFallsBackToDiscovery mirrors the cozystack-side smoke test for ensuring clusterName overrides make it through to the result.
(t *testing.T)
| 7145 | // cozystack-side smoke test for ensuring clusterName overrides make |
| 7146 | // it through to the result. |
| 7147 | func TestMultiDocGeneric_ValidClusterNameOverride(t *testing.T) { |
| 7148 | result := renderGenericWith(t, simpleNicLookup(), map[string]any{ |
| 7149 | "clusterName": "differentclustername", |
| 7150 | }) |
| 7151 | |
| 7152 | assertContains(t, result, "clusterName: \"differentclustername\"") |
| 7153 | } |
| 7154 | |
| 7155 | // TestMultiDocGeneric_ValidSubnetsFallsBackToDiscovery mirrors the |
| 7156 | // cozystack-side smoke test for the generic preset. A single |
nothing calls this directly
no test coverage detected