()
| 529 | |
| 530 | #[test] |
| 531 | fn invalid_path_specs() { |
| 532 | assert!(!SearchTopicSpec::valid_path_spec( |
| 533 | "e76a690f-2eb2-45a0-9cbc-5e7d76f92851" |
| 534 | )); |
| 535 | assert!(!SearchTopicSpec::valid_path_spec( |
| 536 | "In:/wiki/e76a690f-2eb2-45a0-9cbc-5e7d76f92851" |
| 537 | )); |
| 538 | assert!(!SearchTopicSpec::valid_path_spec( |
| 539 | "In:e76a690f-2eb2-45a0-9cbc-5e7d76f92851" |
| 540 | )); |
| 541 | assert!(!SearchTopicSpec::valid_path_spec( |
| 542 | "up:e76a690f-2eb2-45a0-9cbc-5e7d76f92851" |
| 543 | )); |
| 544 | } |
| 545 | |
| 546 | #[test] |
| 547 | fn path_spec_parsing() { |
nothing calls this directly
no outgoing calls
no test coverage detected