summaryrefslogtreecommitdiffstats
path: root/main/fixtures
diff options
context:
space:
mode:
authoreliott <eliott@cactuswax.net>2008-04-17 18:57:21 -0700
committereliott <eliott@cactuswax.net>2008-04-17 18:57:21 -0700
commitdc6f471349d090245d7a1641e830bcb95a14e026 (patch)
tree50fc7b9ddf23b96db1e422fbcc3973d6b7856ca0 /main/fixtures
parentd072a9f71752e0a279535b2a381a50e32912ff9b (diff)
downloadarchweb-dc6f471349d090245d7a1641e830bcb95a14e026.tar.gz
archweb-dc6f471349d090245d7a1641e830bcb95a14e026.zip
Added some fixture data for repos and arches.
Diffstat (limited to 'main/fixtures')
-rw-r--r--main/fixtures/arches.json23
-rw-r--r--main/fixtures/repos.json30
2 files changed, 53 insertions, 0 deletions
diff --git a/main/fixtures/arches.json b/main/fixtures/arches.json
new file mode 100644
index 00000000..171e84b0
--- /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 00000000..2831598c
--- /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"
+ }
+ }
+]