diff --git a/test/integration/dns/thelinux.pro/ns1/tests.bat b/test/integration/dns/thelinux.pro/ns1/tests.bat deleted file mode 100644 index 0803cc6..0000000 --- a/test/integration/dns/thelinux.pro/ns1/tests.bat +++ /dev/null @@ -1,12 +0,0 @@ -#!/usr/bin/env bats - -load 'local-setup' -_local_setup - -load 'helper' - -@test "Test A Record: ${domain}" { - run _check_a_record - assert_output --partial "${ip}" -} - diff --git a/test/integration/dns/thelinux.pro/ns2/tests.bat b/test/integration/dns/thelinux.pro/ns2/tests.bat deleted file mode 100644 index 0803cc6..0000000 --- a/test/integration/dns/thelinux.pro/ns2/tests.bat +++ /dev/null @@ -1,12 +0,0 @@ -#!/usr/bin/env bats - -load 'local-setup' -_local_setup - -load 'helper' - -@test "Test A Record: ${domain}" { - run _check_a_record - assert_output --partial "${ip}" -} - diff --git a/test/integration/dns/thelinux.pro/tests.bat b/test/integration/dns/thelinux.pro/tests.bat deleted file mode 100644 index 1490450..0000000 --- a/test/integration/dns/thelinux.pro/tests.bat +++ /dev/null @@ -1,22 +0,0 @@ -#!/usr/bin/env bats - -load 'local-setup' -_local_setup - -load 'helper' - -@test "Test A Record: ${domain}" { - run _check_a_record - assert_output --partial "${ip}" -} - -@test "Test SOA Record: ${domain}" { - run _check_soa_record - assert_output --partial "${serial}" -} - -# Only test at primary NS -@test "Test SOA Record @ns1: ${domain}" { - run _check_soa_record_at_ns1 - assert_output --partial "${serial}" -} diff --git a/test/integration/dns/thelinux.pro/www/tests.bat b/test/integration/dns/thelinux.pro/www/tests.bat deleted file mode 100644 index 0803cc6..0000000 --- a/test/integration/dns/thelinux.pro/www/tests.bat +++ /dev/null @@ -1,12 +0,0 @@ -#!/usr/bin/env bats - -load 'local-setup' -_local_setup - -load 'helper' - -@test "Test A Record: ${domain}" { - run _check_a_record - assert_output --partial "${ip}" -} - diff --git a/test/integration/test_helper/common-setup.bash b/test/integration/test_helper/common-setup.bash index 5203a78..d4317f3 100644 --- a/test/integration/test_helper/common-setup.bash +++ b/test/integration/test_helper/common-setup.bash @@ -3,6 +3,8 @@ export BATS_LIB_PATH=.bats/libs:../.bats/libs:${HOME}/.bats/libs:/usr/local/lib/bats:/usr/lib/bats _common_setup() { + export BATS_TEST_RETRIES=5 + export BATS_TEST_TIMEOUT=15 bats_load_library bats-support bats_load_library bats-assert }