def test_add_kw(self):
     from time import time
     time.add(year=2001,month=1,day=1,hour=1,second=1)
     compare(time(),978310801.0)
Exemple #2
0
 def test_add_tzinfo_kw(self):
     from time import time
     with ShouldRaise(TypeError('Cannot add tzinfo to ttime')):
         time.add(year=2001, tzinfo=TestTZInfo())
Exemple #3
0
 def test_add_tzinfo_args(self):
     from time import time
     with ShouldRaise(TypeError('Cannot add tzinfo to ttime')):
         time.add(2001, 1, 2, 3, 4, 5, 6, TestTZInfo())
Exemple #4
0
 def test_add_kw(self):
     from time import time
     time.add(year=2001, month=1, day=1, hour=1, second=1)
     compare(time(), 978310801.0)
Exemple #5
0
 def test_add_tzinfo_args(self):
     from time import time
     with ShouldRaise(TypeError('Cannot add tzinfo to ttime')):
         time.add(2001,1,2,3,4,5,6,TestTZInfo())
Exemple #6
0
 def test_add_tzinfo_kw(self):
     from time import time
     with ShouldRaise(TypeError('Cannot add tzinfo to ttime')):
         time.add(year=2001,tzinfo=TestTZInfo())
Exemple #7
0
 def test_add_tzinfo_args(self):
     from time import time
     with ShouldRaise(TypeError('Cannot add using tzinfo on ttime')):
         time.add(2001, 1, 2, 3, 4, 5, 6, SampleTZInfo())
Exemple #8
0
 def test_add_tzinfo_kw(self):
     from time import time
     with ShouldRaise(TypeError('Cannot add using tzinfo on ttime')):
         time.add(year=2001, tzinfo=SampleTZInfo())