diff options
author | Bo-Yi Wu <appleboy.tw@gmail.com> | 2017-04-20 10:31:31 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-20 10:31:31 +0800 |
commit | fa2a513c62910c133316472247121c5c562eaf60 (patch) | |
tree | dbcb79b8bf9f0ac89ac522f871a773b5addac4b8 /models/fixtures | |
parent | a2d365c81fc4eb35ac598bcef696eb1b775b8a9b (diff) | |
download | gitea-fa2a513c62910c133316472247121c5c562eaf60.tar.gz gitea-fa2a513c62910c133316472247121c5c562eaf60.zip |
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>
Diffstat (limited to 'models/fixtures')
-rw-r--r-- | models/fixtures/attachment.yml | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/models/fixtures/attachment.yml b/models/fixtures/attachment.yml new file mode 100644 index 0000000000..99bd5453ee --- /dev/null +++ b/models/fixtures/attachment.yml @@ -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 |