import pytest from monday_com_orca_backend.handlers.business_plan import main from monday_com_orca_backend.typings import LabelId class TestNewBusinessPlan: sample_label_ids: list[LabelId] = [7936, 70961, 778538, 77206, 25223, 22221] @pytest.mark.skip(reason="WIP") @pytest.mark.asyncio async def test_new_business_plan(self): """Test creating a new business plan with given label IDs.""" result = await main.new_business_plan(self.sample_label_ids, fiscal_year=2025) assert isinstance(result, dict), "Result should be a dictionary"