resetNextFlags resets all next command flags to defaults
()
| 167 | |
| 168 | // resetNextFlags resets all next command flags to defaults |
| 169 | func resetNextFlags() { |
| 170 | nextFormat = "table" |
| 171 | nextLimit = 5 |
| 172 | nextFilters = []string{} |
| 173 | nextQuickWins = false |
| 174 | nextCritical = false |
| 175 | nextScope = "" |
| 176 | nextExact = false |
| 177 | nextPhase = "" |
| 178 | nextStrictPhases = false |
| 179 | nextColumns = nextDefaultColumns |
| 180 | nextStatus = "" |
| 181 | nextPriority = "" |
| 182 | } |
| 183 | |
| 184 | func TestNext_BasicRanking(t *testing.T) { |
| 185 | tmpDir := createNextTestTaskFiles(t) |
no outgoing calls
no test coverage detected