24 lines
		
	
	
		
			430 B
		
	
	
	
		
			Python
		
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			430 B
		
	
	
	
		
			Python
		
	
	
	
| """Issue #7110"""
 | |
| import asyncio
 | |
| from typing import List
 | |
| 
 | |
| import asynctest
 | |
| 
 | |
| 
 | |
| teardowns: List[None] = []
 | |
| 
 | |
| 
 | |
| class Test(asynctest.TestCase):
 | |
|     async def tearDown(self):
 | |
|         teardowns.append(None)
 | |
| 
 | |
|     async def test_error(self):
 | |
|         await asyncio.sleep(0)
 | |
|         self.fail("failing on purpose")
 | |
| 
 | |
|     async def test_ok(self):
 | |
|         await asyncio.sleep(0)
 | |
| 
 | |
|     def test_teardowns(self):
 | |
|         assert len(teardowns) == 2
 |