GnuCash c935c2f+
Loading...
Searching...
No Matches
test_gettext.py
1# test gettext
2#
3# @date 2020-04-08
4# @author Christoph Holtermann <mail@c-holtermann.net>
5
6from unittest import TestCase, main
7import gnucash
8from gnucash import _sw_core_utils
9
10
11class TestGettext(TestCase):
12 def test_import_gettext(self):
13 import gettext
14
15 def test_get_localedir(self):
16 _localedir = _sw_core_utils.gnc_path_get_localedir()
17
18if __name__ == '__main__':
19 main()