tide/tide_theme/tests/cmd_duration.fish

14 lines
509 B
Fish
Raw Normal View History

2020-05-10 01:38:07 +03:00
@mesg '---------cmd_duration---------'
2020-05-09 08:48:35 +03:00
function _cmd_duration -a duration threshold decimals
2020-07-12 02:45:23 +03:00
set -lx CMD_DURATION $duration
set -lx tide_cmd_duration_threshold $threshold
set -lx tide_cmd_duration_decimals $decimals
2020-05-09 08:48:35 +03:00
2020-05-22 00:58:09 +03:00
_tide_decolor (_tide_item_cmd_duration)
2020-05-09 08:48:35 +03:00
end
@test 'Less than threshold' (_cmd_duration 2000 3000 0) -z
2020-07-01 03:34:57 +03:00
@test 'Decimals' (_cmd_duration 4567 3000 3) = '4.567s'
@test 'Minutes' (_cmd_duration 456700 3000 0) = '7m 36s'
@test 'Hours' (_cmd_duration 4567000 3000 0) = '1h 16m 7s'