Remove obsolete documentation files and consolidate into docs/ directory. Remove redundant test scripts (functionality will be folded into run.sh). Update AGENTS.md with SDLC workflow. Update PRD.md with tier0 architecture clarification. Update README.md to reflect clean directory structure. Changes: - Delete: BUILD-COMPLETE.md, BUILD-SUMMARY.md, RESUME.md, SESSION-CLOSED.md - Delete: FINAL-SECURITY-COMPLIANCE-REPORT.md, QUICK_START.md, JOURNAL.md - Move: TEST-COVERAGE.md, VERIFICATION-REPORT.md to docs/ - Delete: test-iso.sh, test-runner.sh (will fold into run.sh) - Update: AGENTS.md with SDLC workflow section - Update: PRD.md with tier0 architecture clarification and diagram - Update: README.md to reflect clean directory structure Root directory now contains only: AGENTS.md, README.md, PRD.md, Dockerfile, run.sh 💘 Generated with Crush Assisted-by: GLM-4.7 via Crush <crush@charm.land>
12 lines
287 B
Bash
12 lines
287 B
Bash
#!/usr/bin/env bats
|
|
# Simple test to validate bats setup
|
|
|
|
# Set BATS_LIB_PATH to point to our bats libraries
|
|
|
|
# Load bats libraries directly
|
|
source /usr/lib/bats-core/bats-support/src/output.bash
|
|
source /usr/lib/bats-core/bats-support/src/error.bash
|
|
|
|
@test "bats is working" {
|
|
true
|
|
} |