(t *testing.T)
| 9 | ) |
| 10 | |
| 11 | func TestResolveScanDir_NoArgs(t *testing.T) { |
| 12 | taskDir = "." |
| 13 | got := ResolveScanDir([]string{}) |
| 14 | if got != "." { |
| 15 | t.Errorf("ResolveScanDir([]) = %q, want %q", got, ".") |
| 16 | } |
| 17 | } |
| 18 | |
| 19 | func TestResolveScanDir_WithPositionalArg(t *testing.T) { |
| 20 | taskDir = "." |
nothing calls this directly
no test coverage detected