(t *testing.T)
| 58 | } |
| 59 | |
| 60 | func TestInternalUploadQueueOneFileNoRest(t *testing.T) { |
| 61 | id := fmt.Sprintf("tiuqofnr%v", time.Now().Unix()) |
| 62 | rootFs, boltDb := runInstance.newCacheFs(t, remoteName, id, true, true, |
| 63 | map[string]string{"tmp_upload_path": path.Join(runInstance.tmpUploadDir, id), "tmp_wait_time": "0s"}) |
| 64 | |
| 65 | testInternalUploadQueueOneFile(t, id, rootFs, boltDb) |
| 66 | } |
| 67 | |
| 68 | func TestInternalUploadQueueOneFileWithRest(t *testing.T) { |
| 69 | id := fmt.Sprintf("tiuqofwr%v", time.Now().Unix()) |
nothing calls this directly
no test coverage detected
searching dependent graphs…