You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			11 lines
		
	
	
		
			316 B
		
	
	
	
		
			Python
		
	
			
		
		
	
	
			11 lines
		
	
	
		
			316 B
		
	
	
	
		
			Python
		
	
from setuptools import unicode_utils
 | 
						|
 | 
						|
 | 
						|
def test_filesys_decode_fs_encoding_is_None(monkeypatch):
 | 
						|
    """
 | 
						|
    Test filesys_decode does not raise TypeError when
 | 
						|
    getfilesystemencoding returns None.
 | 
						|
    """
 | 
						|
    monkeypatch.setattr('sys.getfilesystemencoding', lambda: None)
 | 
						|
    unicode_utils.filesys_decode(b'test')
 |