diff options
Diffstat (limited to 'main/fixtures')
-rw-r--r-- | main/fixtures/arches.json | 6 | ||||
-rw-r--r-- | main/fixtures/repos.json | 30 |
2 files changed, 24 insertions, 12 deletions
diff --git a/main/fixtures/arches.json b/main/fixtures/arches.json index 171e84b0..d1396ee2 100644 --- a/main/fixtures/arches.json +++ b/main/fixtures/arches.json @@ -1,20 +1,20 @@ [ { - "pk": "1", + "pk": 1, "model": "main.arch", "fields": { "name": "any" } }, { - "pk": "2", + "pk": 2, "model": "main.arch", "fields": { "name": "i686" } }, { - "pk": "3", + "pk": 3, "model": "main.arch", "fields": { "name": "x86_64" diff --git a/main/fixtures/repos.json b/main/fixtures/repos.json index 2831598c..b702893c 100644 --- a/main/fixtures/repos.json +++ b/main/fixtures/repos.json @@ -1,30 +1,42 @@ [ { - "pk": "1", + "pk": 5, "model": "main.repo", "fields": { - "name": "Core" + "testing": false, + "name": "Community" } }, { - "pk": "2", + "pk": 6, "model": "main.repo", "fields": { - "name": "Extra" + "testing": true, + "name": "Community-Testing" } }, { - "pk": "3", + "pk": 1, "model": "main.repo", "fields": { - "name": "Testing" + "testing": false, + "name": "Core" } }, { - "pk": "4", + "pk": 2, "model": "main.repo", "fields": { - "name": "Unstable" + "testing": false, + "name": "Extra" + } + }, + { + "pk": 3, + "model": "main.repo", + "fields": { + "testing": true, + "name": "Testing" } - } + } ] |