(t *testing.T)
| 76 | } |
| 77 | |
| 78 | func TestParseGraph_EmptyGroup(t *testing.T) { |
| 79 | nodes := []string{"1"} |
| 80 | input := `a =` |
| 81 | _, err := ParseGraph(strings.Split(input, "\n"), nodes) |
| 82 | assert.ErrorContains(t, err, "node/group list must not be empty") |
| 83 | } |
| 84 | |
| 85 | func TestParseGraph_GroupNameIsNodeName(t *testing.T) { |
| 86 | nodes := []string{"1"} |
nothing calls this directly
no test coverage detected