()
| 516 | |
| 517 | #[test] |
| 518 | fn test_trunk_set_path() { |
| 519 | let mut trunk = make_trunk(); |
| 520 | assert_eq!(trunk.path(), "src/main.rs"); |
| 521 | |
| 522 | trunk.set_path("src/lib.rs".to_string()); |
| 523 | assert_eq!(trunk.path(), "src/lib.rs"); |
| 524 | } |
| 525 | |
| 526 | #[test] |
| 527 | fn test_trunk_delete_and_undelete() { |
nothing calls this directly
no test coverage detected