mirror of
				https://github.com/python/cpython.git
				synced 2025-11-03 07:01:21 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
	
		
			291 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
	
		
			291 B
		
	
	
	
		
			Python
		
	
	
	
	
	
from test.json_tests import PyTest, CTest
 | 
						|
 | 
						|
 | 
						|
class TestDefault:
 | 
						|
    def test_default(self):
 | 
						|
        self.assertEqual(
 | 
						|
            self.dumps(type, default=repr),
 | 
						|
            self.dumps(repr(type)))
 | 
						|
 | 
						|
 | 
						|
class TestPyDefault(TestDefault, PyTest): pass
 | 
						|
class TestCDefault(TestDefault, CTest): pass
 |