()
| 215 | |
| 216 | #[test] |
| 217 | fn one_positional() { |
| 218 | let (named, pos) = parse_existing_args("$x, "); |
| 219 | assert!(named.is_empty()); |
| 220 | assert_eq!(pos, 1); |
| 221 | } |
| 222 | |
| 223 | #[test] |
| 224 | fn two_positional() { |
nothing calls this directly
no test coverage detected