diff options
author | Maxim Devaev <[email protected]> | 2024-10-26 15:51:33 +0300 |
---|---|---|
committer | Maxim Devaev <[email protected]> | 2024-10-26 15:51:33 +0300 |
commit | a84242c9bc5215c7230dd9552cbbeec786060ec3 (patch) | |
tree | 7918ea96b79a3e20f2142d5fac2cdf242c5ece80 /testenv | |
parent | 399712c6849b52efcb1b1ee9f4abdafa84c5812f (diff) |
AioExclusiveRegion API is sync now
Diffstat (limited to 'testenv')
-rw-r--r-- | testenv/tests/test_aiotools.py | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/testenv/tests/test_aiotools.py b/testenv/tests/test_aiotools.py index 048b1f9c..8bb0ccea 100644 --- a/testenv/tests/test_aiotools.py +++ b/testenv/tests/test_aiotools.py @@ -40,14 +40,14 @@ async def test_ok__region__access_one() -> None: async def func() -> None: assert not region.is_busy() - async with region: + with region: assert region.is_busy() assert not region.is_busy() await func() assert not region.is_busy() - await region.exit() + region.exit() assert not region.is_busy() @@ -57,16 +57,16 @@ async def test_fail__region__access_one() -> None: async def func() -> None: assert not region.is_busy() - async with region: + with region: assert region.is_busy() - await region.enter() + region.enter() assert not region.is_busy() with pytest.raises(RegionIsBusyError): await func() assert not region.is_busy() - await region.exit() + region.exit() assert not region.is_busy() @@ -76,21 +76,21 @@ async def test_ok__region__access_two() -> None: region = AioExclusiveRegion(RegionIsBusyError) async def func1() -> None: - async with region: + with region: await asyncio.sleep(1) print("done func1()") async def func2() -> None: await asyncio.sleep(2) print("waiking up func2()") - async with region: + with region: await asyncio.sleep(1) print("done func2()") await asyncio.gather(func1(), func2()) assert not region.is_busy() - await region.exit() + region.exit() assert not region.is_busy() @@ -99,13 +99,13 @@ async def test_fail__region__access_two() -> None: region = AioExclusiveRegion(RegionIsBusyError) async def func1() -> None: - async with region: + with region: await asyncio.sleep(2) print("done func1()") async def func2() -> None: await asyncio.sleep(1) - async with region: + with region: await asyncio.sleep(1) print("done func2()") @@ -114,7 +114,7 @@ async def test_fail__region__access_two() -> None: assert type(results[1]) is RegionIsBusyError # pylint: disable=unidiomatic-typecheck assert not region.is_busy() - await region.exit() + region.exit() assert not region.is_busy() |