(t *testing.T)
| 14 | ) |
| 15 | |
| 16 | func TestAnyCluster(t *testing.T) { |
| 17 | s, err := AsSelector(AnyCluster()) |
| 18 | assert.NilError(t, err) |
| 19 | assert.DeepEqual(t, s.String(), strings.Join([]string{ |
| 20 | "postgres-operator.crunchydata.com/cluster", |
| 21 | }, ",")) |
| 22 | } |
| 23 | |
| 24 | func TestCluster(t *testing.T) { |
| 25 | s, err := AsSelector(Cluster("something")) |
nothing calls this directly
no test coverage detected