()
| 140 | |
| 141 | #[test] |
| 142 | fn view_stats() { |
| 143 | let f = Fixtures::copy("simple"); |
| 144 | let stats = f.git.view_stats(RepoId::wiki()).unwrap(); |
| 145 | assert_eq!(stats.topic_count, Some(9)); |
| 146 | assert_eq!(stats.link_count, Some(4)); |
| 147 | } |
| 148 | |
| 149 | #[tokio::test] |
| 150 | async fn fetch_stats() { |
nothing calls this directly
no test coverage detected