aboutsummaryrefslogtreecommitdiffstats
path: root/tests/qtcore/qlocale_test.py
blob: e2fd49d1975ecf85439685784c9fb9de53bfaf4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/usr/bin/python
'''Unit tests for QLocale'''

import unittest
import ctypes
import sys

from PySide.QtCore import QLocale

class QLocaleTestToNumber(unittest.TestCase):
    def testToNumberInt(self):
        obj = QLocale(QLocale.C)
        self.assertEqual(37, obj.toInt('37')[0])

    def testToNumberFloat(self):
        obj = QLocale(QLocale.C)
        self.assertEqual(ctypes.c_float(37.109).value,
                         obj.toFloat('37.109')[0])

    def testToNumberDouble(self):
        obj = QLocale(QLocale.C)
        self.assertEqual(ctypes.c_double(37.109).value,
                         obj.toDouble('37.109')[0])

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