Ejemplo n.º 1
0
 def test_exactly_negative_24_hours(self):
     td = timedeltaDecimal(seconds=-3600 * 24)
     assert str(td) == "-24,00"
Ejemplo n.º 2
0
 def test_exactly_48_hours(self):
     td = timedeltaDecimal(seconds=-3600 * 48)
     assert str(td) == "-48,00"
Ejemplo n.º 3
0
 def test_less_than_negative_24_hours(self):
     td = timedeltaDecimal(seconds=-3600 * 25)
     assert str(td) == "-25,00"
Ejemplo n.º 4
0
 def test_exactly_24_hours(self):
     td = timedeltaDecimal(seconds=3600 * 24)
     assert str(td) == "24,00"
Ejemplo n.º 5
0
 def test_more_than_24_hours(self):
     td = timedeltaDecimal(seconds=3600 * 25)
     assert str(td) == "25,00"
Ejemplo n.º 6
0
 def test_multiply_negative(self):
     td = timedeltaDecimal(seconds=3600)
     assert str(td * -1) == "-1,00"
Ejemplo n.º 7
0
 def test_multiply_positive(self):
     td = timedeltaDecimal(seconds=3600)
     assert str(td * 2) == "2,00"
Ejemplo n.º 8
0
 def test_negative(self):
     assert str(timedeltaDecimal(seconds=-3600)) == "-1,00"
Ejemplo n.º 9
0
 def test_basic(self):
     assert str(timedeltaDecimal(seconds=3600 + 3600 * 0.25)) == "1,25"