(self, item)
| 258 | """ |
| 259 | |
| 260 | def item_pubdate(self, item): |
| 261 | # Provide a weird offset so that the test can know it's getting this |
| 262 | # specific offset and not accidentally getting on from |
| 263 | # settings.TIME_ZONE. |
| 264 | return item.published.replace(tzinfo=get_fixed_timezone(42)) |
| 265 | |
| 266 | |
| 267 | class TestFeedUrlFeed(TestAtomFeed): |
nothing calls this directly
no test coverage detected