Exemple #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))
Exemple #2
0
 def test_non_existing_builtin(self):
     self.assertRaises(
         ValueError,
         lambda: utils.resolve_schematron_filepath('@notexists'))
Exemple #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)
Exemple #4
0
 def test_builtin_lookup(self):
     for name, path in self.sch_schemas.items():
         self.assertEqual(utils.resolve_schematron_filepath('@' + name),
                          path)
Exemple #5
0
 def test_resolve_unsupported_types(self):
     self.assertRaises(TypeError,
                       lambda: utils.resolve_schematron_filepath(None))
 def test_non_existing_filepath(self):
     path = list(self.sch_schemas.values())[0] + '.notexists'
     self.assertRaises(ValueError, 
             lambda: utils.resolve_schematron_filepath(path))
 def test_existing_filepath(self):
     path = list(self.sch_schemas.values())[0]  # get the first item
     self.assertEqual(utils.resolve_schematron_filepath(path), path)
 def test_non_existing_builtin(self):
     self.assertRaises(ValueError, 
             lambda: utils.resolve_schematron_filepath('@notexists'))
 def test_resolve_unsupported_types(self):
     self.assertRaises(TypeError,
             lambda: utils.resolve_schematron_filepath(None))
 def test_builtin_lookup(self):
     for name, path in self.sch_schemas.items():
         self.assertEqual(utils.resolve_schematron_filepath('@'+name), path)