(documentation: &str)
| 165 | } |
| 166 | |
| 167 | fn assert_api_is_empty(documentation: &str) { |
| 168 | let api_content = documentation.split("\n# API\n").nth(1).unwrap_or("").trim(); |
| 169 | |
| 170 | assert_eq!(api_content, ""); |
| 171 | } |
| 172 | |
| 173 | #[test] |
| 174 | fn no_namespaces() { |
no outgoing calls