Skip to content

Commit

Permalink
bump
Browse files Browse the repository at this point in the history
Signed-off-by: Jess Frazelle <[email protected]>
  • Loading branch information
jessfraz committed Apr 7, 2022
1 parent ebf142a commit 9c0018d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.0.9
v0.0.10
9 changes: 9 additions & 0 deletions lib_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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")
}
Expand Down

0 comments on commit 9c0018d

Please sign in to comment.