Add test for jobs (#34)

This commit is contained in:
Jonas Plum
2022-02-27 18:33:50 +01:00
committed by GitHub
parent fd18458f3d
commit ffba7b4f5f
18 changed files with 181 additions and 80 deletions

View File

@@ -11,6 +11,7 @@ import (
"net/http"
"net/http/httptest"
"regexp"
"runtime"
"testing"
"github.com/aws/aws-sdk-go/aws"
@@ -26,6 +27,10 @@ import (
func TestBackupAndRestore(t *testing.T) {
log.SetFlags(log.LstdFlags | log.Lshortfile)
if runtime.GOARCH == "arm64" {
t.Skip("test does not run on arm")
}
type want struct {
status int
}