()
| 294 | |
| 295 | #[test] |
| 296 | fn test_content_within_limit() { |
| 297 | let v = validator(); |
| 298 | let content = "x".repeat(10 * 1024); // exactly 10KB |
| 299 | let skill = make_skill("ok-skill", &content); |
| 300 | assert!(v.validate(&skill).is_ok()); |
| 301 | } |
| 302 | |
| 303 | #[test] |
| 304 | fn test_content_exceeds_limit() { |
nothing calls this directly
no test coverage detected