コード例 #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')