Example #1
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)
Example #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())
Example #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())
Example #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)
Example #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())
Example #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())
Example #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())
Example #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())