mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-01 23:09:00 +00:00
4c00d8f916
Unfortunately #21549 changed the name of Testcases without changing their associated fixture directories. Fix #21854 Signed-off-by: Andrew Thornton <art27@cantab.net> Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
19 lines
388 B
YAML
19 lines
388 B
YAML
# type Milestone struct {
|
|
# ID int64 `xorm:"pk autoincr"`
|
|
# IsClosed bool
|
|
# NumIssues int
|
|
# NumClosedIssues int
|
|
# Completeness int // Percentage(1-100).
|
|
# }
|
|
-
|
|
id: 1
|
|
is_closed: false
|
|
num_issues: 3
|
|
num_closed_issues: 1
|
|
completeness: 33
|
|
-
|
|
id: 2
|
|
is_closed: true
|
|
num_issues: 5
|
|
num_closed_issues: 5
|
|
completeness: 100
|