test PATCH /api/v1/repos/{owner}/{repo}/issues/comments/{id}

Conflicts:
	tests/integration/api_comment_test.go
This commit is contained in:
Loïc Dachary 2023-11-02 14:48:57 +01:00
parent 5504ce44d2
commit 49a246f407
No known key found for this signature in database
GPG key ID: 992D23B392F9E4F2
2 changed files with 11 additions and 1 deletions

View file

@ -326,10 +326,11 @@ func TestAPIGetSystemUserComment(t *testing.T) {
}
func TestAPIEditComment(t *testing.T) {
defer tests.AddFixtures("tests/integration/fixtures/TestAPIComment/")()
defer tests.PrepareTestEnv(t)()
const newCommentBody = "This is the new comment body"
comment := unittest.AssertExistsAndLoadBean(t, &issues_model.Comment{ID: 8},
comment := unittest.AssertExistsAndLoadBean(t, &issues_model.Comment{ID: 1008},
unittest.Cond("type = ?", issues_model.CommentTypeComment))
issue := unittest.AssertExistsAndLoadBean(t, &issues_model.Issue{ID: comment.IssueID})
repo := unittest.AssertExistsAndLoadBean(t, &repo_model.Repository{ID: issue.RepoID})

View file

@ -0,0 +1,9 @@
-
id: 1008
type: 0 # comment
poster_id: 2
issue_id: 4 # in repo_id 2
content: "comment in private pository"
created_unix: 946684811
updated_unix: 946684811