mirror of
https://github.com/fergalmoran/picard.git
synced 2025-12-26 19:29:01 +00:00
25 lines
747 B
Python
25 lines
747 B
Python
#!/usr/bin/env python
|
|
# coding: utf-8
|
|
import os.path
|
|
import shutil
|
|
import tempfile
|
|
|
|
from test.picardtestcase import PicardTestCase
|
|
|
|
from picard.coverart.utils import translate_caa_type
|
|
from picard.i18n import setup_gettext
|
|
|
|
|
|
class CaaTypeTranslationTest(PicardTestCase):
|
|
def setUp(self):
|
|
super().setUp()
|
|
# we are using temporary locales for tests
|
|
self.tmp_path = tempfile.mkdtemp()
|
|
self.localedir = os.path.join(self.tmp_path, 'locale')
|
|
self.addCleanup(shutil.rmtree, self.tmp_path)
|
|
setup_gettext(self.localedir, "C")
|
|
|
|
def test_translating_unknown_types_returns_input(self):
|
|
testtype = "ThisIsAMadeUpCoverArtTypeName"
|
|
self.assertEqual(translate_caa_type(testtype), testtype)
|