(self)
| 108 | |
| 109 | class TestLastModified: |
| 110 | def setup_method(self): |
| 111 | self.sess = Session() |
| 112 | self.cached_sess = CacheControl(self.sess, heuristic=LastModified()) |
| 113 | |
| 114 | def test_last_modified(self, url): |
| 115 | the_url = url + "optional_cacheable_request" |
nothing calls this directly
no test coverage detected