()
| 1115 | |
| 1116 | #[test] |
| 1117 | fn test_workspace_stats_empty() { |
| 1118 | let workspace = Workspace::new(); |
| 1119 | let stats = workspace.stats(); |
| 1120 | |
| 1121 | assert!(stats.is_empty()); |
| 1122 | assert_eq!(stats.total(), 0); |
| 1123 | } |
| 1124 | |
| 1125 | #[test] |
| 1126 | fn test_workspace_stats_populated() { |