()
| 461 | |
| 462 | #[test] |
| 463 | fn test_skill_matcher_with_builder() { |
| 464 | let matcher = HookMatcher::new().with_skill("test-*"); |
| 465 | |
| 466 | assert_eq!(matcher.skill, Some("test-*".to_string())); |
| 467 | |
| 468 | let event = make_skill_load_event("test-skill"); |
| 469 | assert!(matcher.matches(&event)); |
| 470 | } |
| 471 | |
| 472 | #[test] |
| 473 | fn test_skill_matcher_serialization() { |
nothing calls this directly
no test coverage detected