- Move documentation to docs/ directory for better organization - Add bin/ directory for utility scripts - Add lib/ for shared library functions - Update all build scripts to ensure strict Docker compliance - Enhance AGENTS.md with Docker container requirements - Create comprehensive compliance and security documentation - Reorganize test suite with improved structure - Remove obsolete Dockerfile and archive documentation - Add final security compliance report BREAKING CHANGE: Restructured project layout with moved documentation directories 💘 Generated with Crush Assisted-by: GLM-4.6 via Crush <crush@charm.land>
13 lines
329 B
Bash
13 lines
329 B
Bash
#!/usr/bin/env bats
|
|
# Simple test to validate bats setup
|
|
|
|
# Set BATS_LIB_PATH to point to our bats libraries
|
|
export BATS_LIB_PATH="/usr/lib/bats-core"
|
|
|
|
# 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
|
|
} |