diff options
author | eliott <eliott@cactuswax.net> | 2008-04-18 03:57:21 +0200 |
---|---|---|
committer | eliott <eliott@cactuswax.net> | 2008-04-18 03:57:21 +0200 |
commit | dc6f471349d090245d7a1641e830bcb95a14e026 (patch) | |
tree | 50fc7b9ddf23b96db1e422fbcc3973d6b7856ca0 /main/fixtures | |
parent | d072a9f71752e0a279535b2a381a50e32912ff9b (diff) | |
download | archweb-dc6f471349d090245d7a1641e830bcb95a14e026.tar.gz archweb-dc6f471349d090245d7a1641e830bcb95a14e026.tar.xz |
Added some fixture data for repos and arches.
Diffstat (limited to 'main/fixtures')
-rw-r--r-- | main/fixtures/arches.json | 23 | ||||
-rw-r--r-- | main/fixtures/repos.json | 30 |
2 files changed, 53 insertions, 0 deletions
diff --git a/main/fixtures/arches.json b/main/fixtures/arches.json new file mode 100644 index 0000000..171e84b --- /dev/null +++ b/main/fixtures/arches.json @@ -0,0 +1,23 @@ +[ + { + "pk": "1", + "model": "main.arch", + "fields": { + "name": "any" + } + }, + { + "pk": "2", + "model": "main.arch", + "fields": { + "name": "i686" + } + }, + { + "pk": "3", + "model": "main.arch", + "fields": { + "name": "x86_64" + } + } +] diff --git a/main/fixtures/repos.json b/main/fixtures/repos.json new file mode 100644 index 0000000..2831598 --- /dev/null +++ b/main/fixtures/repos.json @@ -0,0 +1,30 @@ +[ + { + "pk": "1", + "model": "main.repo", + "fields": { + "name": "Core" + } + }, + { + "pk": "2", + "model": "main.repo", + "fields": { + "name": "Extra" + } + }, + { + "pk": "3", + "model": "main.repo", + "fields": { + "name": "Testing" + } + }, + { + "pk": "4", + "model": "main.repo", + "fields": { + "name": "Unstable" + } + } +] |