1515 AsyncItemGroupsService ,
1616 ItemGroupsService ,
1717)
18+ from mpt_api_client .resources .catalog .products_items import (
19+ AsyncProductItemService ,
20+ ProductItemService ,
21+ )
1822from mpt_api_client .resources .catalog .products_media import (
1923 AsyncMediaService ,
2024 MediaService ,
@@ -66,6 +70,7 @@ def test_async_mixins_present(async_products_service, method):
6670@pytest .mark .parametrize (
6771 ("service_method" , "expected_service_class" ),
6872 [
73+ ("items" , ProductItemService ),
6974 ("item_groups" , ItemGroupsService ),
7075 ("parameter_groups" , ParameterGroupsService ),
7176 ("media" , MediaService ),
@@ -85,6 +90,7 @@ def test_property_services(products_service, service_method, expected_service_cl
8590@pytest .mark .parametrize (
8691 ("service_method" , "expected_service_class" ),
8792 [
93+ ("items" , AsyncProductItemService ),
8894 ("item_groups" , AsyncItemGroupsService ),
8995 ("parameter_groups" , AsyncParameterGroupsService ),
9096 ("media" , AsyncMediaService ),
0 commit comments