Make sure the author is returned when creating a new comment

This commit is contained in:
kolaente 2020-02-25 21:18:42 +01:00
parent 1f039c4cda
commit c551706b52
Signed by untrusted user who does not match committer: konrad
GPG key ID: F40E70337AB24C9B
2 changed files with 6 additions and 0 deletions

View file

@ -33,6 +33,8 @@ func TestTaskComment_Create(t *testing.T) {
}
err := tc.Create(u)
assert.NoError(t, err)
assert.Equal(t, "test", tc.Comment)
assert.Equal(t, int64(1), tc.Author.ID)
})
t.Run("nonexisting task", func(t *testing.T) {
db.LoadAndAssertFixtures(t)