Blame | Last modification | View Log | Download | RSS feed
# Tests Directory
This directory contains all test scripts for havirt.
## Quick Start
```bash
cd tests/
./test_havirt_safe.sh
```
## Available Test Scripts
- **test_havirt_safe.sh** - Safe read-only tests (recommended)
- **test_havirt.sh** - Full integration tests (requires live cluster)
- **test_integration.pl** - Perl unit tests for modules
- **run_tests.sh** - Interactive test runner
- **TESTING.md** - Complete testing documentation
## Running Tests
All test scripts must be run from this `tests/` directory:
```bash
# Safe tests (no SSH required)
./test_havirt_safe.sh
# With verbose output
./test_havirt_safe.sh --verbose
# Perl integration tests
./test_integration.pl
# Interactive test runner
./run_tests.sh
```
See [TESTING.md](TESTING.md) for complete documentation.