File: test-language.py

package info (click to toggle)
pyxb 1.2.6%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 42,668 kB
  • sloc: python: 239,437; sh: 905; xml: 690; makefile: 60
file content (22 lines) | stat: -rw-r--r-- 668 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -*- coding: utf-8 -*-
import logging
if __name__ == '__main__':
    logging.basicConfig()
_log = logging.getLogger(__name__)
from pyxb.exceptions_ import *
import unittest
import pyxb.binding.datatypes as xsd

class Test_language (unittest.TestCase):
    def testValid (self):
        valid = [ 'english', 'welsh', 'french-english', 'one-two-three-four' ]
        for f in valid:
            self.assertEqual(f, xsd.language(f))

    def testInvalid (self):
        invalid = [ 'toomanychars', 'illegal_chars', 'numb3rs' ]
        for f in invalid:
            self.assertRaises(SimpleTypeValueError, xsd.language, f)

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