コード例 #1
0
ファイル: test_parser.py プロジェクト: klingtnet/ssf-project
 def test_bad_remote(self):
     assert parser.parse(self.bad_remote_filepath) is None
コード例 #2
0
ファイル: test_parser.py プロジェクト: klingtnet/ssf-project
 def test_remote(self):
     assert parser.parse(remote_filepath) is not None
コード例 #3
0
ファイル: test_parser.py プロジェクト: klingtnet/ssf-project
 def test_bad_local(self):
     assert parser.parse(self.bad_local_filepath) is None
コード例 #4
0
ファイル: test_parser.py プロジェクト: klingtnet/ssf-project
 def test_local(self):
     assert parser.parse(local_filepath) is not None
コード例 #5
0
 def test_bad_remote(self):
     assert parser.parse(self.bad_remote_filepath) is None
コード例 #6
0
 def test_bad_local(self):
     assert parser.parse(self.bad_local_filepath) is None
コード例 #7
0
 def test_remote(self):
     assert parser.parse(remote_filepath) is not None
コード例 #8
0
 def test_local(self):
     assert parser.parse(local_filepath) is not None