()
| 222 | |
| 223 | #[test] |
| 224 | fn two_positional() { |
| 225 | let (named, pos) = parse_existing_args("$x, $y, "); |
| 226 | assert!(named.is_empty()); |
| 227 | assert_eq!(pos, 2); |
| 228 | } |
| 229 | |
| 230 | #[test] |
| 231 | fn one_named() { |
nothing calls this directly
no test coverage detected