summaryrefslogtreecommitdiffstats
path: root/main/fixtures
diff options
context:
space:
mode:
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 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"
+ }
+ }
+]