()
| 35 | |
| 36 | |
| 37 | def test_last_modified(): |
| 38 | last_modified = datetime.datetime(1999, 1, 1, tzinfo=datetime.timezone.utc) |
| 39 | rv = send_file(txt_path, environ, last_modified=last_modified) |
| 40 | assert rv.last_modified == last_modified |
| 41 | rv.close() |
| 42 | |
| 43 | |
| 44 | @pytest.mark.parametrize( |