diff options
author | Ethan Koenig <etk39@cornell.edu> | 2017-01-08 22:08:36 -0500 |
---|---|---|
committer | Lunny Xiao <xiaolunwen@gmail.com> | 2017-01-09 11:08:36 +0800 |
commit | 4b23e6a69449b985c74ad797257c30250e60ec9a (patch) | |
tree | c4766acb1d3d2b8dfd0d9253cabcfb3a0ba38a6c /models/fixtures/action.yml | |
parent | f4feeecc3af089a105c9a1ad976a78cd6856b407 (diff) | |
download | gitea-4b23e6a69449b985c74ad797257c30250e60ec9a.tar.gz gitea-4b23e6a69449b985c74ad797257c30250e60ec9a.zip |
Unit tests for models/action (#619)
Diffstat (limited to 'models/fixtures/action.yml')
-rw-r--r-- | models/fixtures/action.yml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/models/fixtures/action.yml b/models/fixtures/action.yml new file mode 100644 index 0000000000..f4f10dde2b --- /dev/null +++ b/models/fixtures/action.yml @@ -0,0 +1,22 @@ +- + id: 1 + user_id: 2 + op_type: 12 # close issue + act_user_id: 2 + act_user_name: user2 + repo_id: 2 + repo_user_name: user2 + repo_name: repo2 + is_private: true + +- + id: 2 + user_id: 3 + op_type: 2 # rename repo + act_user_id: 3 + act_user_name: user3 + repo_id: 3 + repo_user_name: user3 + repo_name: repo3 # TODO old or new name? + is_private: false + content: oldRepoName |