(t *testing.T)
| 2321 | } |
| 2322 | |
| 2323 | func TestIssue3829(t *testing.T) { |
| 2324 | m := setupModel(t, defaultCfgWrapper) |
| 2325 | defer cleanupModel(m) |
| 2326 | |
| 2327 | // Empty subdirs should be accepted |
| 2328 | |
| 2329 | if err := m.ScanFolderSubdirs("default", []string{""}); err != nil { |
| 2330 | t.Error("Unexpected error:", err) |
| 2331 | } |
| 2332 | } |
| 2333 | |
| 2334 | // TestIssue4573 tests that contents of an unavailable dir aren't marked deleted |
| 2335 | func TestIssue4573(t *testing.T) { |
nothing calls this directly
no test coverage detected