Skip to content
Snippets Groups Projects
Commit 388bf748 authored by juga's avatar juga Committed by Matt Traudt
Browse files

Add test for timestamp conversion functions

parent c950f59a
No related branches found
No related tags found
No related merge requests found
# -*- coding: utf-8 -*-
"""Test timestamp conversion util functions"""
from datetime import datetime
from sbws.util.timestamp import (dt_obj_to_isodt_str, unixts_to_dt_obj,
unixts_to_isodt_str, unixts_to_str)
isodt_str = '2018-05-23T12:55:04'
dt_obj = datetime.strptime(isodt_str, '%Y-%m-%dT%H:%M:%S')
unixts = int(dt_obj.timestamp())
def test_dt_obj_to_isodt_str():
assert isodt_str == dt_obj_to_isodt_str(dt_obj)
def test_unixts_to_dt_obj():
assert dt_obj == unixts_to_dt_obj(unixts)
def test_unixts_to_isodt_str():
assert isodt_str == unixts_to_isodt_str(unixts)
def test_unixts_to_str():
assert str(unixts) == unixts_to_str(unixts)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment