(self)
| 853 | |
| 854 | @coroutine_test |
| 855 | async def test_export_tuple(self): |
| 856 | items = [ |
| 857 | {"foo": "bar1", "egg": "spam1"}, |
| 858 | {"foo": "bar2", "egg": "spam2", "baz": "quux"}, |
| 859 | ] |
| 860 | |
| 861 | settings = {"FEED_EXPORT_FIELDS": ("foo", "baz")} |
| 862 | rows = [{"foo": "bar1", "baz": ""}, {"foo": "bar2", "baz": "quux"}] |
| 863 | await self.assertExported(items, ["foo", "baz"], rows, settings=settings) |
| 864 | |
| 865 | @coroutine_test |
| 866 | async def test_export_feed_export_fields(self): |
nothing calls this directly
no test coverage detected