Files
gnucash/bindings/python/tests/test_gettext.py

20 lines
402 B
Python
Raw Normal View History

2020-04-08 07:33:15 +02:00
# test gettext
#
# @date 2020-04-08
# @author Christoph Holtermann <mail@c-holtermann.net>
from unittest import TestCase, main
import gnucash
from gnucash import _sw_core_utils
2020-04-27 22:08:15 +02:00
2020-04-08 07:33:15 +02:00
class TestGettext(TestCase):
def test_import_gettext(self):
import gettext
def test_get_localedir(self):
_localedir = _sw_core_utils.gnc_path_get_localedir()
if __name__ == '__main__':
main()