blob: 703278842a2331c285b593b6b8ebcf812dc8c74a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#!/bin/bash
source /var/onap_tests/_test_base
source /var/onap/integration
covered_functions=(
"clone_integration_repos"
)
# test_clone_integration_repos() - Verify that Integration repositories are cloned properly
function test_clone_integration_repos {
clone_repos "integration"
asserts_file_exist ${src_folders[integration]}/README.md
asserts_file_exist ${src_folders[integration]}/devtool/LICENSE
#asserts_file_exist ${src_folders[integration]}/seccom/
}
if [ "$1" != '*' ]; then
unset covered_functions
covered_functions=$1
fi
main "${covered_functions[@]}"
|