Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test_uri_util.py « no_gui « test - dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c47b50c9b495fee51b65c910f0069b60e4424a9e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import unittest

from gajim.common import app  # noqa F401  (avoid circular imports)
from gajim.common.const import XmppUriQuery
from gajim.common.helpers import _xmpp_query_type_handlers


class Test(unittest.TestCase):
    def test_xmpp_query_type_handlers_dict(self):
        for t in XmppUriQuery:
            self.assertIn(t, _xmpp_query_type_handlers)


if __name__ == '__main__':
    unittest.main()