summaryrefslogtreecommitdiff
path: root/tests/regressiontests/multiple_database/fixtures
diff options
context:
space:
mode:
authorFlorian Apolloner <florian@apolloner.eu>2013-02-26 09:53:47 +0100
committerFlorian Apolloner <florian@apolloner.eu>2013-02-26 14:36:57 +0100
commit89f40e36246100df6a11316c31a76712ebc6c501 (patch)
tree6e65639683ddaf2027908d1ecb1739e0e2ff853b /tests/regressiontests/multiple_database/fixtures
parentb3d2ccb5bfbaf6e7fe1f98843baaa48c35a70950 (diff)
Merged regressiontests and modeltests into the test root.
Diffstat (limited to 'tests/regressiontests/multiple_database/fixtures')
-rw-r--r--tests/regressiontests/multiple_database/fixtures/multidb-common.json10
-rw-r--r--tests/regressiontests/multiple_database/fixtures/multidb.default.json26
-rw-r--r--tests/regressiontests/multiple_database/fixtures/multidb.other.json26
-rw-r--r--tests/regressiontests/multiple_database/fixtures/pets.json18
4 files changed, 0 insertions, 80 deletions
diff --git a/tests/regressiontests/multiple_database/fixtures/multidb-common.json b/tests/regressiontests/multiple_database/fixtures/multidb-common.json
deleted file mode 100644
index 33134173b9..0000000000
--- a/tests/regressiontests/multiple_database/fixtures/multidb-common.json
+++ /dev/null
@@ -1,10 +0,0 @@
-[
- {
- "pk": 1,
- "model": "multiple_database.book",
- "fields": {
- "title": "The Definitive Guide to Django",
- "published": "2009-7-8"
- }
- }
-] \ No newline at end of file
diff --git a/tests/regressiontests/multiple_database/fixtures/multidb.default.json b/tests/regressiontests/multiple_database/fixtures/multidb.default.json
deleted file mode 100644
index 379b18a803..0000000000
--- a/tests/regressiontests/multiple_database/fixtures/multidb.default.json
+++ /dev/null
@@ -1,26 +0,0 @@
-[
- {
- "pk": 1,
- "model": "multiple_database.person",
- "fields": {
- "name": "Marty Alchin"
- }
- },
- {
- "pk": 2,
- "model": "multiple_database.person",
- "fields": {
- "name": "George Vilches"
- }
- },
- {
- "pk": 2,
- "model": "multiple_database.book",
- "fields": {
- "title": "Pro Django",
- "published": "2008-12-16",
- "authors": [["Marty Alchin"]],
- "editor": ["George Vilches"]
- }
- }
-]
diff --git a/tests/regressiontests/multiple_database/fixtures/multidb.other.json b/tests/regressiontests/multiple_database/fixtures/multidb.other.json
deleted file mode 100644
index c64f490201..0000000000
--- a/tests/regressiontests/multiple_database/fixtures/multidb.other.json
+++ /dev/null
@@ -1,26 +0,0 @@
-[
- {
- "pk": 1,
- "model": "multiple_database.person",
- "fields": {
- "name": "Mark Pilgrim"
- }
- },
- {
- "pk": 2,
- "model": "multiple_database.person",
- "fields": {
- "name": "Chris Mills"
- }
- },
- {
- "pk": 2,
- "model": "multiple_database.book",
- "fields": {
- "title": "Dive into Python",
- "published": "2009-5-4",
- "authors": [["Mark Pilgrim"]],
- "editor": ["Chris Mills"]
- }
- }
-] \ No newline at end of file
diff --git a/tests/regressiontests/multiple_database/fixtures/pets.json b/tests/regressiontests/multiple_database/fixtures/pets.json
deleted file mode 100644
index 89756a3e5b..0000000000
--- a/tests/regressiontests/multiple_database/fixtures/pets.json
+++ /dev/null
@@ -1,18 +0,0 @@
-[
- {
- "pk": 1,
- "model": "multiple_database.pet",
- "fields": {
- "name": "Mr Bigglesworth",
- "owner": 1
- }
- },
- {
- "pk": 2,
- "model": "multiple_database.pet",
- "fields": {
- "name": "Spot",
- "owner": 2
- }
- }
-] \ No newline at end of file