(path: &std::path::Path, contents: &str)
| 859 | } |
| 860 | |
| 861 | fn write(path: &std::path::Path, contents: &str) { |
| 862 | std::fs::create_dir_all(path.parent().unwrap()).expect("mkdir"); |
| 863 | std::fs::write(path, contents).expect("write"); |
| 864 | } |
| 865 | |
| 866 | #[test] |
| 867 | fn loads_modern_projects_layout_with_usage_and_sessions() { |
no outgoing calls