예제 #1
0
파일: test_core.py 프로젝트: Keita1/obspy
 def test_is_q_file(self):
     """
     Testing Q header file format.
     """
     testfile = os.path.join(self.path, 'data', 'QFILE-TEST-SUN.QHD')
     self.assertEqual(_is_q(testfile), True)
     testfile = os.path.join(self.path, 'data', 'QFILE-TEST-SUN.QBN')
     self.assertEqual(_is_q(testfile), False)
     testfile = os.path.join(self.path, 'data', 'TEST_090101_0101.ASC')
     self.assertEqual(_is_q(testfile), False)
예제 #2
0
 def test_is_qFile(self):
     """
     Testing Q header file format.
     """
     testfile = os.path.join(self.path, 'data', 'QFILE-TEST-SUN.QHD')
     self.assertEqual(_is_q(testfile), True)
     testfile = os.path.join(self.path, 'data', 'QFILE-TEST-SUN.QBN')
     self.assertEqual(_is_q(testfile), False)
     testfile = os.path.join(self.path, 'data', 'TEST_090101_0101.ASC')
     self.assertEqual(_is_q(testfile), False)