diff options
Diffstat (limited to 'models/fixtures')
-rw-r--r-- | models/fixtures/access_token.yml | 23 | ||||
-rw-r--r-- | models/fixtures/update_task.yml | 20 |
2 files changed, 43 insertions, 0 deletions
diff --git a/models/fixtures/access_token.yml b/models/fixtures/access_token.yml new file mode 100644 index 0000000000..9572709dd9 --- /dev/null +++ b/models/fixtures/access_token.yml @@ -0,0 +1,23 @@ +- + id: 1 + uid: 1 + name: Token A + sha1: hash1 + created_unix: 946687980 + updated_unix: 946687980 + +- + id: 2 + uid: 1 + name: Token B + sha1: hash2 + created_unix: 946687980 + updated_unix: 946687980 + +- + id: 3 + uid: 2 + name: Token A + sha1: hash3 + created_unix: 946687980 + updated_unix: 946687980 diff --git a/models/fixtures/update_task.yml b/models/fixtures/update_task.yml new file mode 100644 index 0000000000..ffcd5fd6fa --- /dev/null +++ b/models/fixtures/update_task.yml @@ -0,0 +1,20 @@ +- + id: 1 + uuid: uuid1 + ref_name: refName1 + old_commit_id: oldCommitId1 + new_commit_id: newCommitId1 + +- + id: 2 + uuid: uuid2 + ref_name: refName2 + old_commit_id: oldCommitId2 + new_commit_id: newCommitId2 + +- + id: 3 + uuid: uuid3 + ref_name: refName3 + old_commit_id: oldCommitId3 + new_commit_id: newCommitId3 |