(t *testing.T)
| 1070 | } |
| 1071 | |
| 1072 | func TestRebuildAndChain_Single(t *testing.T) { |
| 1073 | a := cmp(prop("a"), "==", str("1")) |
| 1074 | result := rebuildAndChain([]ConditionNode{a}) |
| 1075 | assert.Equal(t, "a == '1'", result.Render(), "single term rebuilds without AND") |
| 1076 | } |
| 1077 | |
| 1078 | func TestRebuildAndChain_Two(t *testing.T) { |
| 1079 | a := cmp(prop("a"), "==", str("1")) |
nothing calls this directly
no test coverage detected