mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 11:35:03 +01:00 
			
		
		
		
	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>
		
			
				
	
	
		
			20 lines
		
	
	
		
			388 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			20 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
 |