()
| 34 | @pytest.mark.asyncio |
| 35 | @pytest.mark.skipif(API_KEY is None, reason="API_KEY is not set") |
| 36 | async def test_create_task_async(): |
| 37 | client = CapmonsterClient(API_KEY, timeout=30.0) |
| 38 | task_id = await client.create_task_async( |
| 39 | task=BinanceTask(websiteURL=WEBSITE_URL, websiteKey=WEBSITE_KEY, validateId=VALIDATE_ID)) |
| 40 | assert task_id != 0 |
nothing calls this directly
no test coverage detected