Skip to content

Commit

Permalink
test for #356
Browse files Browse the repository at this point in the history
  • Loading branch information
wjwwood committed Apr 22, 2016
1 parent edf7b43 commit 63e554c
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions tests/unit/test_common.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,19 @@ def test_get_recursive_build_depends_in_workspace_with_test_depend():

r = common.get_recursive_build_depends_in_workspace(pkg1, ordered_packages)
assert r == ordered_packages[1:], r


def test_format_time_delta_short():
inputs = {
1.45: "1.4",
61.45: "01:01.4",
121.45: "02:01.4",
# this one tests: https://github.com/catkin/catkin_tools/issues/356
3601.45: "1:00:01.4",
3721.45: "1:02:01.4",
7321.45: "2:02:01.4",
93821.45: "1 day 2:03:41.5",
}
for k, v in inputs.items():
f = common.format_time_delta_short(k)
assert f == v, "format_time_delta_short({0}) -> '{1}' != '{2}'".format(k, f, v)

0 comments on commit 63e554c

Please sign in to comment.