diff options
author | 6543 <6543@obermui.de> | 2020-02-29 03:49:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-28 23:49:50 -0300 |
commit | 7e8cdba18120c4588d1921f07593a9a66eaa1411 (patch) | |
tree | d7782277bb558c9cea1ccb262b81298330bb35ba /models/issue_label_test.go | |
parent | c32f3da33c38e18a7ed4a8c49de27898c2aa07f8 (diff) | |
download | gitea-7e8cdba18120c4588d1921f07593a9a66eaa1411.tar.gz gitea-7e8cdba18120c4588d1921f07593a9a66eaa1411.zip |
[Refactor] move APIFormat() of Issue and Label to convert package (#10423)
* Label: delete .APIFormat() and use convert.ToLabel()
* move issue APIFormat too
* add missing one
* move TEST too
* handle error -> return empty APIIssue
* Apply suggestions from code review
Co-Authored-By: guillep2k <18600385+guillep2k@users.noreply.github.com>
Co-authored-by: zeripath <art27@cantab.net>
Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com>
Diffstat (limited to 'models/issue_label_test.go')
-rw-r--r-- | models/issue_label_test.go | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/models/issue_label_test.go b/models/issue_label_test.go index d831792861..6f51473fcb 100644 --- a/models/issue_label_test.go +++ b/models/issue_label_test.go @@ -8,23 +8,11 @@ import ( "html/template" "testing" - api "code.gitea.io/gitea/modules/structs" - "github.com/stretchr/testify/assert" ) // TODO TestGetLabelTemplateFile -func TestLabel_APIFormat(t *testing.T) { - assert.NoError(t, PrepareTestDatabase()) - label := AssertExistsAndLoadBean(t, &Label{ID: 1}).(*Label) - assert.Equal(t, api.Label{ - ID: label.ID, - Name: label.Name, - Color: "abcdef", - }, *label.APIFormat()) -} - func TestLabel_CalOpenIssues(t *testing.T) { assert.NoError(t, PrepareTestDatabase()) label := AssertExistsAndLoadBean(t, &Label{ID: 1}).(*Label) |