mirror of
https://github.com/redhat-developer/odo.git
synced 2025-10-19 03:06:19 +03:00
16 lines
275 B
Bash
Executable File
16 lines
275 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
for i in FIt FDescribe FContext FWhen FEntry FDescribeTable
|
|
do
|
|
if grep -nr "$i(" tests/; then
|
|
echo -e "$i: Not OK. $i exists somewhere in the testing code. Please remove it.\n"
|
|
exitCode=1
|
|
else
|
|
echo -e "$i: OK\n"
|
|
fi
|
|
done
|
|
|
|
exit $exitCode
|