()
| 522 | |
| 523 | #[test] |
| 524 | fn test_not_a_command() { |
| 525 | let reg = CommandRegistry::new(); |
| 526 | let ctx = test_ctx(); |
| 527 | assert!(reg.dispatch("hello world", &ctx).is_none()); |
| 528 | } |
| 529 | |
| 530 | #[test] |
| 531 | fn test_custom_command() { |
nothing calls this directly
no test coverage detected