diff options
Diffstat (limited to 'testrig/util.go')
-rw-r--r-- | testrig/util.go | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/testrig/util.go b/testrig/util.go index 0410366e3..6cadb90d2 100644 --- a/testrig/util.go +++ b/testrig/util.go @@ -24,6 +24,7 @@ import ( "mime/multipart" "net/url" "os" + "time" ) // CreateMultipartFormData is a handy function for taking a fieldname and a filename, and creating a multipart form bytes buffer @@ -76,3 +77,13 @@ func URLMustParse(stringURL string) *url.URL { } return u } + +// TimeMustParse tries to parse the given time as RFC3339, and panics if it can't. +// Should only be used in tests. +func TimeMustParse(timeString string) time.Time { + t, err := time.Parse(time.RFC3339, timeString) + if err != nil { + panic(err) + } + return t +} |