mirror of
https://github.com/django/django.git
synced 2025-10-31 09:41:08 +00:00
Refs #27546 -- Tested some __repr__() methods.
This commit is contained in:
13
tests/i18n/test_management.py
Normal file
13
tests/i18n/test_management.py
Normal file
@@ -0,0 +1,13 @@
|
||||
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))
|
||||
Reference in New Issue
Block a user