예제 #1
0
 def test_machine_progress(self):
     for count, total in [(0, 1), (0, None), (1, None), (235, 9283)]:
         expect = ": {} written {} total\n".format(
             count, -1 if (total is None) else total)
         self.assertTrue(
             arv_put.machine_progress(count, total).endswith(expect))
예제 #2
0
 def test_machine_progress(self):
     for count, total in [(0, 1), (0, None), (1, None), (235, 9283)]:
         expect = ": {} written {} total\n".format(
             count, -1 if (total is None) else total)
         self.assertTrue(
             arv_put.machine_progress(count, total).endswith(expect))