# Test Skill

> Use when working with a test skill for validation testing

- Skill: `tomevault-io/test-skill-19` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add tomevault-io/test-skill-19`
- Raw SKILL.md: https://api.skillmd.com/api/skills/tomevault-io/test-skill-19/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: tomevault-io (https://skillmd.com/u/tomevault-io)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/tomevault-io/test-skill-19

---


# Test Skill

This skill teaches how to perform testing and validation tasks.

## When to Use

Use this skill when:
- You need to test validation logic
- You want to verify plugin configurations
- You need to check fixture validity

## Instructions

Follow these steps for testing:

1. Identify what needs to be tested
2. Create appropriate test fixtures
3. Run the validation
4. Check the results

## Examples

### Example 1: Basic Validation

```python
from cpv_validation_common import ValidationReport

report = ValidationReport()
report.passed("Test passed successfully")
```

### Example 2: Checking Errors

```python
report = ValidationReport()
report.critical("Missing required field: name")
assert report.has_critical
```

---
> Converted and distributed by [TomeVault](https://tomevault.io/claim/emasoft) — claim your Tome and manage your conversions.
<!-- tomevault:4.0:skill_md:2026-04-13 -->

