Exemplo n.º 1
0
def test_checkIsHours_6():
    assert transform.checkIsHours('12:00:00.0')
Exemplo n.º 2
0
def test_checkIsHours_4():
    assert not transform.checkIsHours(0.0)
Exemplo n.º 3
0
def test_checkIsHours_5():
    assert not transform.checkIsHours('+12*00:00.0')
Exemplo n.º 4
0
def test_checkIsHours_3():
    assert not transform.checkIsHours(12)
Exemplo n.º 5
0
def test_checkIsHours_2():
    assert not transform.checkIsHours(-180)
Exemplo n.º 6
0
def test_checkIsHours_3():
    suc = transform.checkIsHours('')
    assert suc
Exemplo n.º 7
0
def test_checkIsHours_2():
    suc = transform.checkIsHours('*55:67:77')
    assert not suc
Exemplo n.º 8
0
def test_checkIsHours_1():
    suc = transform.checkIsHours(0)
    assert not suc