()
| 459 | // ------------------------------------------------------------------------- |
| 460 | |
| 461 | fn make_trunk() -> Trunk { |
| 462 | Trunk::new( |
| 463 | TrunkId::new(NodeId::new(1), 0), |
| 464 | Inode::new(42), |
| 465 | "src/main.rs".to_string(), |
| 466 | Some(Encoding::Utf8), |
| 467 | ) |
| 468 | } |
| 469 | |
| 470 | #[test] |
| 471 | fn test_trunk_new() { |
no outgoing calls