// // Created by erki on 30/01/25. // #include #include "skullc/coro/scheduler.hpp" #include "skullc/coro/this_coro.hpp" TEST_CASE("this_coro returns the correct scheduler.", "[coro],[this_coro]") { skullc::coro::Scheduler scheduler; skullc::this_coro::scheduler.register_scheduler(scheduler); REQUIRE(&skullc::this_coro::scheduler() == &scheduler); }