├── .gitmodules ├── LICENSE ├── README.md ├── bin └── build.sh └── test ├── build.bats ├── docker_mock.bash └── helpers.bash /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlond/how_to_bats/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlond/how_to_bats/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlond/how_to_bats/HEAD/README.md -------------------------------------------------------------------------------- /bin/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlond/how_to_bats/HEAD/bin/build.sh -------------------------------------------------------------------------------- /test/build.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlond/how_to_bats/HEAD/test/build.bats -------------------------------------------------------------------------------- /test/docker_mock.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlond/how_to_bats/HEAD/test/docker_mock.bash -------------------------------------------------------------------------------- /test/helpers.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlond/how_to_bats/HEAD/test/helpers.bash --------------------------------------------------------------------------------