mirror of
				https://github.com/python/cpython.git
				synced 2025-11-03 23:21:29 +00:00 
			
		
		
		
	* Ensure importlib.metadata tests do not leak references in sys.modules. * Move importlib.metadata tests to their own package for easier syncing with importlib_metadata. * Update owners and makefile for new directories. * Add blurb
		
			
				
	
	
		
			10 lines
		
	
	
	
		
			233 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
	
		
			233 B
		
	
	
	
		
			Python
		
	
	
	
	
	
import unittest
 | 
						|
 | 
						|
 | 
						|
class fake_filesystem_unittest:
 | 
						|
    """
 | 
						|
    Stubbed version of the pyfakefs module
 | 
						|
    """
 | 
						|
    class TestCase(unittest.TestCase):
 | 
						|
        def setUpPyfakefs(self):
 | 
						|
            self.skipTest("pyfakefs not available")
 |