diff --git a/VERSION.txt b/VERSION.txt index 3849426..51bbb66 100644 --- a/VERSION.txt +++ b/VERSION.txt @@ -1 +1 @@ -v0.0.9 +v0.0.10 diff --git a/lib_test.go b/lib_test.go index ad641da..e330055 100644 --- a/lib_test.go +++ b/lib_test.go @@ -65,6 +65,15 @@ func TestFileConversion(t *testing.T) { t.Fatalf("the file conversion status is not `Completed`: %v", fc.Status) } + // Make sure we have a started at time. + if fc.StartedAt.IsZero() { + t.Fatalf("the file conversion started at time is zero") + } + + if fc.CompletedAt.IsZero() { + t.Fatalf("the file conversion completed at time is zero") + } + if len(output) == 0 { t.Fatalf("the file conversion output is empty") }