mirror of
https://github.com/go-gitea/gitea
synced 2025-07-22 18:28:37 +00:00
feat: add download count field and unit testing for attachment. (#1512)
* feat: add download count field and unit testing. * fix: unit testing * refactor: improve testing. * fix: update comment * add default value. Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>
This commit is contained in:
71
models/fixtures/attachment.yml
Normal file
71
models/fixtures/attachment.yml
Normal file
@@ -0,0 +1,71 @@
|
||||
-
|
||||
id: 1
|
||||
uuid: 1234567890
|
||||
issue_id: 1
|
||||
comment_id: 0
|
||||
name: attach1
|
||||
download_count: 0
|
||||
created_unix: 946684800
|
||||
|
||||
-
|
||||
id: 2
|
||||
uuid: 1122334455
|
||||
issue_id: 1
|
||||
comment_id: 0
|
||||
name: attach2
|
||||
download_count: 1
|
||||
created_unix: 946684800
|
||||
|
||||
-
|
||||
id: 3
|
||||
uuid: comment-id-1
|
||||
issue_id: 2
|
||||
comment_id: 1
|
||||
name: attach1
|
||||
download_count: 0
|
||||
created_unix: 946684800
|
||||
|
||||
-
|
||||
id: 4
|
||||
uuid: comment-id-2
|
||||
issue_id: 3
|
||||
comment_id: 1
|
||||
name: attach2
|
||||
download_count: 1
|
||||
created_unix: 946684800
|
||||
|
||||
-
|
||||
id: 5
|
||||
uuid: comment-id-3
|
||||
issue_id: 4
|
||||
comment_id: 0
|
||||
name: attach1
|
||||
download_count: 0
|
||||
created_unix: 946684800
|
||||
|
||||
-
|
||||
id: 6
|
||||
uuid: comment-id-4
|
||||
issue_id: 5
|
||||
comment_id: 2
|
||||
name: attach1
|
||||
download_count: 0
|
||||
created_unix: 946684800
|
||||
|
||||
-
|
||||
id: 7
|
||||
uuid: comment-id-5
|
||||
issue_id: 5
|
||||
comment_id: 2
|
||||
name: attach1
|
||||
download_count: 0
|
||||
created_unix: 946684800
|
||||
|
||||
-
|
||||
id: 8
|
||||
uuid: test-12345
|
||||
issue_id: 6
|
||||
comment_id: 0
|
||||
name: attach1
|
||||
download_count: 0
|
||||
created_unix: 946684800
|
Reference in New Issue
Block a user