from logging_service import toHMS

def test_toHMS():
    assert toHMS(1) == "0:00:01"
    assert toHMS(3599) == "0:59:59"
    assert toHMS(3600) == "1:00:00"
    assert toHMS(3601) == "1:00:01"
    print "Pass"
    
test_toHMS()

    