├── .travis.yml ├── .zunit.yml ├── .zvmrc ├── LICENSE ├── README.md ├── code-of-conduct.md ├── contributing.md ├── src ├── assertions.zsh ├── commands │ ├── init.zsh │ └── run.zsh ├── events.zsh ├── helpers.zsh ├── reports │ ├── html.zsh │ └── tap.zsh └── zunit.zsh └── zunit.zsh-completion /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zunit-zsh/zunit/HEAD/.travis.yml -------------------------------------------------------------------------------- /.zunit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zunit-zsh/zunit/HEAD/.zunit.yml -------------------------------------------------------------------------------- /.zvmrc: -------------------------------------------------------------------------------- 1 | 4.3.12 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zunit-zsh/zunit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zunit-zsh/zunit/HEAD/README.md -------------------------------------------------------------------------------- /code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zunit-zsh/zunit/HEAD/code-of-conduct.md -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zunit-zsh/zunit/HEAD/contributing.md -------------------------------------------------------------------------------- /src/assertions.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zunit-zsh/zunit/HEAD/src/assertions.zsh -------------------------------------------------------------------------------- /src/commands/init.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zunit-zsh/zunit/HEAD/src/commands/init.zsh -------------------------------------------------------------------------------- /src/commands/run.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zunit-zsh/zunit/HEAD/src/commands/run.zsh -------------------------------------------------------------------------------- /src/events.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zunit-zsh/zunit/HEAD/src/events.zsh -------------------------------------------------------------------------------- /src/helpers.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zunit-zsh/zunit/HEAD/src/helpers.zsh -------------------------------------------------------------------------------- /src/reports/html.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zunit-zsh/zunit/HEAD/src/reports/html.zsh -------------------------------------------------------------------------------- /src/reports/tap.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zunit-zsh/zunit/HEAD/src/reports/tap.zsh -------------------------------------------------------------------------------- /src/zunit.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zunit-zsh/zunit/HEAD/src/zunit.zsh -------------------------------------------------------------------------------- /zunit.zsh-completion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zunit-zsh/zunit/HEAD/zunit.zsh-completion --------------------------------------------------------------------------------