From 994a865d4da6e67326e1f19094a507b6b226f225 Mon Sep 17 00:00:00 2001 From: Kevin Song Date: Sat, 10 Aug 2019 12:47:34 -0700 Subject: [PATCH] fix: Add test attribute to cmd_duration tests (#134) --- src/modules/cmd_duration.rs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/modules/cmd_duration.rs b/src/modules/cmd_duration.rs index 1f0cd3e4..c38a9b60 100644 --- a/src/modules/cmd_duration.rs +++ b/src/modules/cmd_duration.rs @@ -1,4 +1,3 @@ -use crate::config::Config; use ansi_term::Color; use super::{Context, Module}; @@ -77,12 +76,15 @@ mod tests { fn test_10s() { assert_eq!(render_time(10 as u64), "10s") } + #[test] fn test_90s() { assert_eq!(render_time(90 as u64), "1m30s") } + #[test] fn test_10110s() { - assert_eq!(render_time(10110 as u64), "1h48m30s") + assert_eq!(render_time(10110 as u64), "2h48m30s") } + #[test] fn test_1d() { assert_eq!(render_time(86400 as u64), "1d") }