15 lines
344 B
Python
15 lines
344 B
Python
from __future__ import annotations
|
|
|
|
import unittest
|
|
|
|
from govoplan_workflow.backend.manifest import get_manifest
|
|
|
|
|
|
class WorkflowEditorMigrationTests(unittest.TestCase):
|
|
def test_editor_does_not_own_database_migrations(self) -> None:
|
|
self.assertIsNone(get_manifest().migration_spec)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
unittest.main()
|