(self)
| 284 | self.assertEqual(f.read(), b"example view") |
| 285 | |
| 286 | def test_static_files(self): |
| 287 | with self.urlopen("/static/example_static_file.txt") as f: |
| 288 | self.assertEqual(f.read().rstrip(b"\r\n"), b"example static file") |
| 289 | |
| 290 | def test_no_collectstatic_emulation(self): |
| 291 | """ |