summaryrefslogtreecommitdiffstats
path: root/tests/unit/test_gettext.py
diff options
context:
space:
mode:
authorRussell Bryant <rbryant@redhat.com>2012-06-04 15:58:30 -0400
committerRussell Bryant <rbryant@redhat.com>2012-06-06 10:29:14 -0400
commitfcfe81e600b4dc1f06498bab93c1f1244e943699 (patch)
treedaaff99f5ac86fb36235a0bbf222fd10cc81e9b7 /tests/unit/test_gettext.py
parentc1f45745e240f9cc0d4e6522a71a895471aa94b3 (diff)
downloadoslo-fcfe81e600b4dc1f06498bab93c1f1244e943699.tar.gz
oslo-fcfe81e600b4dc1f06498bab93c1f1244e943699.tar.xz
oslo-fcfe81e600b4dc1f06498bab93c1f1244e943699.zip
Add gettext support.
This patch adds gettext support for openstack-common modules. In the process of pulling in the rpc code, I didn't want to remove the usage of _() that was already in there. This allows it to stay in a way that doesn't conflict with gettext usage in the project using openstack-common. Change-Id: I9cad006f81244f0cce7b7f28659fa1daa5a4268a
Diffstat (limited to 'tests/unit/test_gettext.py')
-rw-r--r--tests/unit/test_gettext.py30
1 files changed, 30 insertions, 0 deletions
diff --git a/tests/unit/test_gettext.py b/tests/unit/test_gettext.py
new file mode 100644
index 0000000..52066cb
--- /dev/null
+++ b/tests/unit/test_gettext.py
@@ -0,0 +1,30 @@
+# vim: tabstop=4 shiftwidth=4 softtabstop=4
+
+# Copyright 2012 Red Hat, Inc.
+# All Rights Reserved.
+#
+# Licensed under the Apache License, Version 2.0 (the "License"); you may
+# not use this file except in compliance with the License. You may obtain
+# a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+# License for the specific language governing permissions and limitations
+# under the License.
+
+import unittest
+import logging
+
+from openstack.common.gettextutils import _
+
+
+LOG = logging.getLogger(__name__)
+
+
+class GettextTest(unittest.TestCase):
+
+ def test_gettext_does_not_blow_up(self):
+ LOG.info(_('test'))