diff options
Diffstat (limited to '_pytest/test_slackts.py')
-rw-r--r-- | _pytest/test_slackts.py | 31 |
1 files changed, 18 insertions, 13 deletions
diff --git a/_pytest/test_slackts.py b/_pytest/test_slackts.py index afe3719..87f43a7 100644 --- a/_pytest/test_slackts.py +++ b/_pytest/test_slackts.py @@ -2,18 +2,23 @@ from wee_slack import SlackTS def test_slackts(): - a = SlackTS("1234.0") - print a - b = SlackTS("1234.002") - print b - print type(a.major) - print type(a.minor) - print type(b.major) - print type(b.minor) - print a.minor - assert a < b + base = SlackTS("1485976156.000017") + + b = SlackTS("1485976156.000016") + c = SlackTS("1485976156.000018") + + d = SlackTS("1485976155.000017") + e = SlackTS("1485976157.000017") + + assert base > b + assert base < c + + assert base > d + assert base < e + c = SlackTS() - assert c > b + assert c > base - print str(SlackTS()) - #assert False + assert base == "1485976156.000017" + assert base > "1485976156.000016" + assert base < "1485976156.000018" |