fix: moved test scripts to functionnal testing

This commit is contained in:
Gu://em_ 2026-01-31 16:35:34 +01:00
parent 37e430a234
commit b6305c2453
4 changed files with 0 additions and 3 deletions

21
tests/functional/func.sh Executable file
View file

@ -0,0 +1,21 @@
func()
{
echo hello
}
arg_func()
{
echo first argument is "$1"
}
func_in_func()
{
func
}
func_one_line() { echo "this is on one line"; }
func
arg_func "HERE"
func_in_func
func_one_line