fix: moved test scripts to functionnal testing
This commit is contained in:
parent
37e430a234
commit
b6305c2453
4 changed files with 0 additions and 3 deletions
21
tests/functional/func.sh
Executable file
21
tests/functional/func.sh
Executable 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue