├── .github ├── dependabot.yaml └── workflows │ ├── scorecard.yaml │ ├── test.yml │ └── toc.yaml ├── .gitignore ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.md ├── doc ├── failure.gif ├── failure.terminalizer.yml ├── success.gif └── success.terminalizer.yml ├── examples ├── bats │ ├── test_helm_package.bats │ └── test_kubectl_and_oc.sh └── ci │ ├── Jenkinsfile.extended │ └── Jenkinsfile.minimal ├── lib ├── detik.bash ├── linter.bash └── utils.bash └── tests ├── resources ├── with_lint_errors_try_to_find.no.run.txt ├── with_lint_errors_try_to_find.run.txt ├── with_lint_errors_try_to_verify.no.run.txt ├── with_lint_errors_try_to_verify.run.txt ├── with_lint_errors_verify.no.run.txt ├── with_lint_errors_verify.run.txt ├── without_lint_errors.no.run.txt └── without_lint_errors.run.txt ├── test.detik.build_k8s_request.bats ├── test.detik.try.to.find.being.bats ├── test.detik.try.to.find.matching.bats ├── test.detik.try.to.verify.is.bats ├── test.detik.try.to.verify.matches.bats ├── test.detik.verify.bats ├── test.linter.bats ├── test.utils.debug.bats ├── test.utils.to_lower_case.bats └── test.utils.trim.bats /.github/dependabot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bats-core/bats-detik/HEAD/.github/dependabot.yaml -------------------------------------------------------------------------------- /.github/workflows/scorecard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bats-core/bats-detik/HEAD/.github/workflows/scorecard.yaml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bats-core/bats-detik/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.github/workflows/toc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bats-core/bats-detik/HEAD/.github/workflows/toc.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .project 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bats-core/bats-detik/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bats-core/bats-detik/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bats-core/bats-detik/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bats-core/bats-detik/HEAD/README.md -------------------------------------------------------------------------------- /doc/failure.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bats-core/bats-detik/HEAD/doc/failure.gif -------------------------------------------------------------------------------- /doc/failure.terminalizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bats-core/bats-detik/HEAD/doc/failure.terminalizer.yml -------------------------------------------------------------------------------- /doc/success.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bats-core/bats-detik/HEAD/doc/success.gif -------------------------------------------------------------------------------- /doc/success.terminalizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bats-core/bats-detik/HEAD/doc/success.terminalizer.yml -------------------------------------------------------------------------------- /examples/bats/test_helm_package.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bats-core/bats-detik/HEAD/examples/bats/test_helm_package.bats -------------------------------------------------------------------------------- /examples/bats/test_kubectl_and_oc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bats-core/bats-detik/HEAD/examples/bats/test_kubectl_and_oc.sh -------------------------------------------------------------------------------- /examples/ci/Jenkinsfile.extended: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bats-core/bats-detik/HEAD/examples/ci/Jenkinsfile.extended -------------------------------------------------------------------------------- /examples/ci/Jenkinsfile.minimal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bats-core/bats-detik/HEAD/examples/ci/Jenkinsfile.minimal -------------------------------------------------------------------------------- /lib/detik.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bats-core/bats-detik/HEAD/lib/detik.bash -------------------------------------------------------------------------------- /lib/linter.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bats-core/bats-detik/HEAD/lib/linter.bash -------------------------------------------------------------------------------- /lib/utils.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bats-core/bats-detik/HEAD/lib/utils.bash -------------------------------------------------------------------------------- /tests/resources/with_lint_errors_try_to_find.no.run.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bats-core/bats-detik/HEAD/tests/resources/with_lint_errors_try_to_find.no.run.txt -------------------------------------------------------------------------------- /tests/resources/with_lint_errors_try_to_find.run.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bats-core/bats-detik/HEAD/tests/resources/with_lint_errors_try_to_find.run.txt -------------------------------------------------------------------------------- /tests/resources/with_lint_errors_try_to_verify.no.run.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bats-core/bats-detik/HEAD/tests/resources/with_lint_errors_try_to_verify.no.run.txt -------------------------------------------------------------------------------- /tests/resources/with_lint_errors_try_to_verify.run.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bats-core/bats-detik/HEAD/tests/resources/with_lint_errors_try_to_verify.run.txt -------------------------------------------------------------------------------- /tests/resources/with_lint_errors_verify.no.run.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bats-core/bats-detik/HEAD/tests/resources/with_lint_errors_verify.no.run.txt -------------------------------------------------------------------------------- /tests/resources/with_lint_errors_verify.run.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bats-core/bats-detik/HEAD/tests/resources/with_lint_errors_verify.run.txt -------------------------------------------------------------------------------- /tests/resources/without_lint_errors.no.run.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bats-core/bats-detik/HEAD/tests/resources/without_lint_errors.no.run.txt -------------------------------------------------------------------------------- /tests/resources/without_lint_errors.run.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bats-core/bats-detik/HEAD/tests/resources/without_lint_errors.run.txt -------------------------------------------------------------------------------- /tests/test.detik.build_k8s_request.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bats-core/bats-detik/HEAD/tests/test.detik.build_k8s_request.bats -------------------------------------------------------------------------------- /tests/test.detik.try.to.find.being.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bats-core/bats-detik/HEAD/tests/test.detik.try.to.find.being.bats -------------------------------------------------------------------------------- /tests/test.detik.try.to.find.matching.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bats-core/bats-detik/HEAD/tests/test.detik.try.to.find.matching.bats -------------------------------------------------------------------------------- /tests/test.detik.try.to.verify.is.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bats-core/bats-detik/HEAD/tests/test.detik.try.to.verify.is.bats -------------------------------------------------------------------------------- /tests/test.detik.try.to.verify.matches.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bats-core/bats-detik/HEAD/tests/test.detik.try.to.verify.matches.bats -------------------------------------------------------------------------------- /tests/test.detik.verify.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bats-core/bats-detik/HEAD/tests/test.detik.verify.bats -------------------------------------------------------------------------------- /tests/test.linter.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bats-core/bats-detik/HEAD/tests/test.linter.bats -------------------------------------------------------------------------------- /tests/test.utils.debug.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bats-core/bats-detik/HEAD/tests/test.utils.debug.bats -------------------------------------------------------------------------------- /tests/test.utils.to_lower_case.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bats-core/bats-detik/HEAD/tests/test.utils.to_lower_case.bats -------------------------------------------------------------------------------- /tests/test.utils.trim.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bats-core/bats-detik/HEAD/tests/test.utils.trim.bats --------------------------------------------------------------------------------