()
| 1294 | |
| 1295 | #[test] |
| 1296 | fn test_status_with_path_string() { |
| 1297 | let status = Status::new().with_path(String::from("src/commands/")); |
| 1298 | assert_eq!(status.path, Some("src/commands/".to_string())); |
| 1299 | } |
| 1300 | |
| 1301 | #[test] |
| 1302 | fn test_status_with_path_str() { |