#!/usr/bin/env bats # Unit tests for run.sh main entry point @test "run.sh exists and is executable" { [ -f "/workspace/run.sh" ] [ -x "/workspace/run.sh" ] } @test "run.sh help command runs" { run bash /workspace/run.sh help || true [ "$?" -le 1 ] }