#!/usr/bin/env bats # End-to-end integration tests @test "all documentation files exist" { [ -f "/workspace/AGENTS.md" ] [ -f "/workspace/README.md" ] [ -f "/workspace/PRD.md" ] } @test "docs directory exists" { [ -d "/workspace/docs" ] } @test "src directory contains essential scripts" { [ -f "/workspace/src/build-iso.sh" ] [ -f "/workspace/src/firewall-setup.sh" ] [ -f "/workspace/src/security-hardening.sh" ] }