mirror of
https://github.com/microsoft/debugpy.git
synced 2025-12-23 08:48:12 +00:00
23 lines
273 B
Bash
23 lines
273 B
Bash
#!/bin/bash -e
|
|
|
|
source test/test.bash
|
|
|
|
PATH=$PWD/bin:$PATH
|
|
source bash+
|
|
|
|
functions=(
|
|
use
|
|
import
|
|
fcopy
|
|
findlib
|
|
die
|
|
warn
|
|
can
|
|
)
|
|
|
|
for f in ${functions[@]}; do
|
|
is "$(type -t "bash+:$f")" function \
|
|
"bash+:$f is a function"
|
|
done
|
|
|
|
done_testing 7
|