()
| 1583 | |
| 1584 | #[test] |
| 1585 | fn pointer_buf_clear() { |
| 1586 | let mut ptr = PointerBuf::from_tokens(["foo", "bar"]); |
| 1587 | ptr.clear(); |
| 1588 | assert_eq!(ptr, ""); |
| 1589 | } |
| 1590 | |
| 1591 | #[test] |
| 1592 | fn push_pop_back() { |
nothing calls this directly
no test coverage detected