def test_find_category_ids(): with mock_shed_context() as shed_context: category_ids = shed.find_category_ids( shed_context.tsi, ["Text Manipulation"] ) assert category_ids == ["c1"]
def test_find_category_ids(): with mock_shed_client() as tsi: category_ids = shed.find_category_ids(tsi, ["Text Manipulation"]) assert category_ids == ["c1"]