https://github.com/thinkinglabs/kata-bootstrap-shell
Bootstrap project for shell script katas using ShellSpec
https://github.com/thinkinglabs/kata-bootstrap-shell
Last synced: 10 months ago
JSON representation
Bootstrap project for shell script katas using ShellSpec
- Host: GitHub
- URL: https://github.com/thinkinglabs/kata-bootstrap-shell
- Owner: thinkinglabs
- License: mit
- Created: 2024-12-10T07:51:04.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-15T09:53:29.000Z (over 1 year ago)
- Last Synced: 2024-12-27T12:12:45.297Z (over 1 year ago)
- Language: Shell
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Kata Bootstrap for CPP and Google Test
This is a bootstrap project for kata's in shell script using [ShellSpec](https://github.com/shellspec/shellspec).
## Basic Setup
Install [ShellCheck](https://github.com/koalaman/shellcheck):
```bash
# on Debian based Linux
sudo apt install shellcheck
# on macOS
brew install shellcheck
# on Windows with GitBash or WSL
winget install koalaman.shellcheck
```
Install [ShellSpec](https://github.com/shellspec/shellspec):
```bash
# on macOS
brew install shellspec
# on Linux and Windows with GitBash or WSL
curl -fsSL https://git.io/shellspec | sh
```
## Run unit tests
To run the unit tests:
```bash
make test
```