Fixtures are properly loaded and visible to the live server thread.
(self)
| 333 | |
| 334 | class LiveServerDatabase(LiveServerBase): |
| 335 | def test_fixtures_loaded(self): |
| 336 | """ |
| 337 | Fixtures are properly loaded and visible to the live server thread. |
| 338 | """ |
| 339 | with self.urlopen("/model_view/") as f: |
| 340 | self.assertCountEqual(f.read().splitlines(), [b"jane", b"robert"]) |
| 341 | |
| 342 | def test_database_writes(self): |
| 343 | """ |