(t *testing.T)
| 36 | } |
| 37 | |
| 38 | func TestAlias(t *testing.T) { |
| 39 | var a config |
| 40 | err := yaml.Unmarshal([]byte(anchor), &a) |
| 41 | if err != nil { |
| 42 | t.Fatal(err) |
| 43 | } |
| 44 | if _, err := gen(&a.SQL); err != nil { |
| 45 | t.Fatal(err) |
| 46 | } |
| 47 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…