(ts *testscript.TestScript, report *usage.Report)
| 97 | } |
| 98 | |
| 99 | func checkNoTODOs(ts *testscript.TestScript, report *usage.Report) { |
| 100 | for _, top := range report.Report { |
| 101 | for _, section := range top.Sections { |
| 102 | if strings.Contains(strings.ToUpper(section.Text), "TODO") { |
| 103 | ts.Fatalf("TODO found in %s (%s)", section.Command, section.Name) |
| 104 | } |
| 105 | } |
| 106 | } |
| 107 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…