mirror of
				https://github.com/django/django.git
				synced 2025-10-30 17:16:10 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			448 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			448 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| import os
 | |
| 
 | |
| from django.core.management.commands.makemessages import TranslatableFile
 | |
| from django.test import SimpleTestCase
 | |
| 
 | |
| 
 | |
| class TranslatableFileTests(SimpleTestCase):
 | |
| 
 | |
|     def test_repr(self):
 | |
|         dirpath = 'dir'
 | |
|         file_name = 'example'
 | |
|         trans_file = TranslatableFile(dirpath=dirpath, file_name=file_name, locale_dir=None)
 | |
|         self.assertEqual(repr(trans_file), '<TranslatableFile: %s>' % os.path.join(dirpath, file_name))
 |