(name: &str)
| 7 | // TODO: We should use tempdir to manage the project directory. |
| 8 | |
| 9 | fn unique_project(name: &str) -> String { |
| 10 | format!("{}/{}", std::env::temp_dir().to_str().unwrap(), name) |
| 11 | } |
| 12 | |
| 13 | #[test] |
| 14 | fn create_delete_empty() { |
no outgoing calls
no test coverage detected