diff options
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/migrations/test_exceptions.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/migrations/test_exceptions.py b/tests/migrations/test_exceptions.py new file mode 100644 index 0000000000..3d839471f9 --- /dev/null +++ b/tests/migrations/test_exceptions.py @@ -0,0 +1,12 @@ +from django.db.migrations.exceptions import NodeNotFoundError +from django.test import SimpleTestCase + + +class ExceptionTests(SimpleTestCase): + def test_node_not_found_error_repr(self): + node = ('some_app_label', 'some_migration_label') + error_repr = repr(NodeNotFoundError('some message', node)) + self.assertEqual( + error_repr, + "NodeNotFoundError(('some_app_label', 'some_migration_label'))" + ) |
