flectra/odoo/tests/addons/test_translation_import/tests.yml

14 lines
555 B
YAML
Raw Normal View History

-
Load the french translation.
-
!python {model: ir.translation }: |
import odoo
odoo.tools.trans_load(cr, 'test_translation_import/i18n/fr.po', 'fr_FR', verbose=False)
-
Assert we have loaded the correct number of entries for the given source string.
-
!python {model: ir.translation }: |
translations = self.search(
[('src', '=', '1XBUO5PUYH2RYZSA1FTLRYS8SPCNU1UYXMEYMM25ASV7JC2KTJZQESZYRV9L8CGB')])
assert len(translations) == 2, "2 entries are expected, got %s instead." % len(translations)