(self)
| 69 | |
| 70 | class TestOneDayCache: |
| 71 | def setup_method(self): |
| 72 | self.sess = Session() |
| 73 | self.cached_sess = CacheControl(self.sess, heuristic=OneDayCache()) |
| 74 | |
| 75 | def test_cache_for_one_day(self, url): |
| 76 | the_url = url + "optional_cacheable_request" |
nothing calls this directly
no test coverage detected