(path string)
| 177 | assert.Equal(t, tabulate.Render("simple"), readTable("_tests/test_string_wrap_simple")) |
| 178 | } |
| 179 | func readTable(path string) string { |
| 180 | buf, err := ioutil.ReadFile(path) |
| 181 | if err != nil { |
| 182 | panic(err) |
| 183 | } |
| 184 | return string(buf) |
| 185 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…