예제 #1
0
 def test_check_id_success(self):
     native._check_id(u'\u222b', 'Compound')
예제 #2
0
 def test_check_id_not_string(self):
     with self.assertRaises(native.ParseError):
         native._check_id(False, 'Compound')
예제 #3
0
 def test_check_id_empty_string(self):
     with self.assertRaises(native.ParseError):
         native._check_id('', 'Reaction')
예제 #4
0
 def test_check_id_none(self):
     with self.assertRaises(native.ParseError):
         native._check_id(None, 'Compound')
예제 #5
0
파일: test_yaml.py 프로젝트: spikeliu/psamm
 def test_check_id_success(self):
     native._check_id(u'\u222b', 'Compound')
예제 #6
0
파일: test_yaml.py 프로젝트: spikeliu/psamm
 def test_check_id_empty_string(self):
     with self.assertRaises(native.ParseError):
         native._check_id('', 'Reaction')
예제 #7
0
파일: test_yaml.py 프로젝트: spikeliu/psamm
 def test_check_id_not_string(self):
     with self.assertRaises(native.ParseError):
         native._check_id(False, 'Compound')
예제 #8
0
파일: test_yaml.py 프로젝트: spikeliu/psamm
 def test_check_id_none(self):
     with self.assertRaises(native.ParseError):
         native._check_id(None, 'Compound')