コード例 #1
0
ファイル: test_io.py プロジェクト: vallsv/pyFAI
 def test_from(self):
     t0 = time.time()
     isotime = io.get_isotime(t0)
     self.assertTrue(abs(t0 - io.from_isotime(isotime)) < 1, "timing are precise to the second")
コード例 #2
0
ファイル: test_io.py プロジェクト: silx-kit/pyFAI
 def test_from(self):
     t0 = time.perf_counter()
     isotime = io.get_isotime(t0)
     self.assertTrue(
         abs(t0 - io.from_isotime(isotime)) < 1,
         "timing are precise to the second")
コード例 #3
0
ファイル: test_io.py プロジェクト: dkarkoulis/pyFAI
 def test_from(self):
     t0 = time.time()
     isotime = io.get_isotime(t0)
     self.assert_(
         abs(t0 - io.from_isotime(isotime)) < 1,
         "timing are precise to the second")