aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_integration
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_integration')
-rwxr-xr-xtests/test_integration23
1 files changed, 23 insertions, 0 deletions
diff --git a/tests/test_integration b/tests/test_integration
new file mode 100755
index 0000000..7032788
--- /dev/null
+++ b/tests/test_integration
@@ -0,0 +1,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[@]}"