()
| 229 | |
| 230 | #[test] |
| 231 | fn one_named() { |
| 232 | let (named, pos) = parse_existing_args("name: $x, "); |
| 233 | assert_eq!(named, vec!["name"]); |
| 234 | assert_eq!(pos, 0); |
| 235 | } |
| 236 | |
| 237 | #[test] |
| 238 | fn mixed_positional_and_named() { |
nothing calls this directly
no test coverage detected