mirror of
https://github.com/openappsec/openappsec.git
synced 2025-06-28 16:41:02 +03:00
10 lines
188 B
Bash
Executable File
10 lines
188 B
Bash
Executable File
#!/bin/bash
|
|
|
|
testCompletionRuns() {
|
|
result=$(./yq __complete "" 2>&1)
|
|
assertEquals 0 $?
|
|
assertContains "$result" "Completion ended with directive:"
|
|
}
|
|
|
|
source ./scripts/shunit2
|