From 29106008f851d81eccc174a47844a036876e9856 Mon Sep 17 00:00:00 2001 From: Anas Date: Sun, 1 Nov 2020 19:09:03 +0200 Subject: [PATCH] Added more info in feature file in CHANGES --- CHANGES/4700.feature | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGES/4700.feature b/CHANGES/4700.feature index ee2cfded3f6..37e12f86cb9 100644 --- a/CHANGES/4700.feature +++ b/CHANGES/4700.feature @@ -1 +1,6 @@ AioHTTPTestCase more async friendly + +for the people who use unittest and are used to use unittest.TestCase +it will be easier to write new test cases like the sync version of the TestCase class, +without using the decorator `@unittest_run_loop`, just `async def test_*`. +The only difference is that for the people using python3.7 and below a new dependency is needed, it is `asynctestcase`.