7 lines
74 B
Text
7 lines
74 B
Text
|
#!/bin/sh
|
||
|
set -e
|
||
|
|
||
|
for t in test/*_test.rb; do
|
||
|
ruby -Itest "${t}"
|
||
|
done
|