bsdcapsicum.rb/bin/test-runner

7 lines
74 B
Text
Raw Normal View History

2024-06-25 04:36:09 +02:00
#!/bin/sh
set -e
for t in test/*_test.rb; do
ruby -Itest "${t}"
done