(self)
| 708 | |
| 709 | @coroutine_test |
| 710 | async def test_export_items_field_names(self): |
| 711 | items = [{"foo": "bar"}] |
| 712 | header = {"foo": "Foo"} |
| 713 | rows = [{"Foo": "bar"}] |
| 714 | settings = {"FEED_EXPORT_FIELDS": header} |
| 715 | await self.assertExported(items, list(header.values()), rows, settings=settings) |
| 716 | |
| 717 | @coroutine_test |
| 718 | async def test_export_items_dict_field_names(self): |
nothing calls this directly
no test coverage detected