1
0
mirror of https://github.com/django/django.git synced 2025-10-24 14:16:09 +00:00

Add an Executor for end-to-end running

This commit is contained in:
Andrew Godwin
2013-05-30 18:08:58 +01:00
parent 7f9a0b7061
commit e6f7f4533c
7 changed files with 188 additions and 11 deletions

View File

@@ -54,7 +54,7 @@ class LoaderTests(TransactionTestCase):
author_state = project_state.models["migrations", "author"]
self.assertEqual(
[x for x, y in author_state.fields],
["id", "name", "slug", "age", "important"]
["id", "name", "slug", "age", "rating"]
)
book_state = project_state.models["migrations", "book"]