(app core.App)
| 854 | } |
| 855 | |
| 856 | func getBackupFiles(app core.App) ([]*blob.ListObject, error) { |
| 857 | fsys, err := app.NewBackupsFilesystem() |
| 858 | if err != nil { |
| 859 | return nil, err |
| 860 | } |
| 861 | defer fsys.Close() |
| 862 | |
| 863 | return fsys.List("") |
| 864 | } |
| 865 | |
| 866 | func ensureNoBackups(t testing.TB, app *tests.TestApp) { |
| 867 | files, err := getBackupFiles(app) |
no test coverage detected
searching dependent graphs…