Пример #1
0
 def test_non_existing_filepath(self):
     path = list(self.sch_schemas.values())[0] + '.notexists'
     self.assertRaises(ValueError,
                       lambda: utils.resolve_schematron_filepath(path))
Пример #2
0
 def test_non_existing_builtin(self):
     self.assertRaises(
         ValueError,
         lambda: utils.resolve_schematron_filepath('@notexists'))
Пример #3
0
 def test_existing_filepath(self):
     path = list(self.sch_schemas.values())[0]  # get the first item
     self.assertEqual(utils.resolve_schematron_filepath(path), path)
Пример #4
0
 def test_builtin_lookup(self):
     for name, path in self.sch_schemas.items():
         self.assertEqual(utils.resolve_schematron_filepath('@' + name),
                          path)
Пример #5
0
 def test_resolve_unsupported_types(self):
     self.assertRaises(TypeError,
                       lambda: utils.resolve_schematron_filepath(None))
Пример #6
0
 def test_non_existing_filepath(self):
     path = list(self.sch_schemas.values())[0] + '.notexists'
     self.assertRaises(ValueError, 
             lambda: utils.resolve_schematron_filepath(path))
Пример #7
0
 def test_existing_filepath(self):
     path = list(self.sch_schemas.values())[0]  # get the first item
     self.assertEqual(utils.resolve_schematron_filepath(path), path)
Пример #8
0
 def test_non_existing_builtin(self):
     self.assertRaises(ValueError, 
             lambda: utils.resolve_schematron_filepath('@notexists'))
Пример #9
0
 def test_resolve_unsupported_types(self):
     self.assertRaises(TypeError,
             lambda: utils.resolve_schematron_filepath(None))
Пример #10
0
 def test_builtin_lookup(self):
     for name, path in self.sch_schemas.items():
         self.assertEqual(utils.resolve_schematron_filepath('@'+name), path)