1config BR2_PACKAGE_BATS_CORE 2 bool "bats" 3 depends on BR2_PACKAGE_BASH # runtime 4 help 5 Bats: Bash Automated Testing System 6 7 Bats is a TAP-compliant testing framework for Bash. It 8 provides a simple way to verify that the UNIX programs you 9 write behave as expected. 10 11 https://github.com/bats-core/bats-core 12 13if BR2_PACKAGE_BATS_CORE 14 15source "package/bats-assert/Config.in" 16source "package/bats-file/Config.in" 17source "package/bats-support/Config.in" 18 19endif 20