├── .github └── workflows │ └── clojure.yml ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── examples └── example │ ├── arrow_examples.clj │ ├── eventually_arrow_example.clj │ ├── facts_example.clj │ ├── http_example.clj │ ├── in_example.clj │ ├── midje_example.clj │ └── throws_example.clj ├── package.json ├── project.clj ├── src └── testit │ ├── assert.cljc │ ├── core.cljc │ ├── eventually.clj │ ├── in.cljc │ └── throws.clj └── test └── testit ├── deep_compare_test.clj ├── eventually_test.clj ├── facts_test.cljc ├── in_test.cljc ├── macros.cljc ├── runner.cljs └── throws_test.clj /.github/workflows/clojure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metosin/testit/HEAD/.github/workflows/clojure.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metosin/testit/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metosin/testit/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metosin/testit/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metosin/testit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metosin/testit/HEAD/README.md -------------------------------------------------------------------------------- /examples/example/arrow_examples.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metosin/testit/HEAD/examples/example/arrow_examples.clj -------------------------------------------------------------------------------- /examples/example/eventually_arrow_example.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metosin/testit/HEAD/examples/example/eventually_arrow_example.clj -------------------------------------------------------------------------------- /examples/example/facts_example.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metosin/testit/HEAD/examples/example/facts_example.clj -------------------------------------------------------------------------------- /examples/example/http_example.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metosin/testit/HEAD/examples/example/http_example.clj -------------------------------------------------------------------------------- /examples/example/in_example.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metosin/testit/HEAD/examples/example/in_example.clj -------------------------------------------------------------------------------- /examples/example/midje_example.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metosin/testit/HEAD/examples/example/midje_example.clj -------------------------------------------------------------------------------- /examples/example/throws_example.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metosin/testit/HEAD/examples/example/throws_example.clj -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metosin/testit/HEAD/package.json -------------------------------------------------------------------------------- /project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metosin/testit/HEAD/project.clj -------------------------------------------------------------------------------- /src/testit/assert.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metosin/testit/HEAD/src/testit/assert.cljc -------------------------------------------------------------------------------- /src/testit/core.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metosin/testit/HEAD/src/testit/core.cljc -------------------------------------------------------------------------------- /src/testit/eventually.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metosin/testit/HEAD/src/testit/eventually.clj -------------------------------------------------------------------------------- /src/testit/in.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metosin/testit/HEAD/src/testit/in.cljc -------------------------------------------------------------------------------- /src/testit/throws.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metosin/testit/HEAD/src/testit/throws.clj -------------------------------------------------------------------------------- /test/testit/deep_compare_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metosin/testit/HEAD/test/testit/deep_compare_test.clj -------------------------------------------------------------------------------- /test/testit/eventually_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metosin/testit/HEAD/test/testit/eventually_test.clj -------------------------------------------------------------------------------- /test/testit/facts_test.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metosin/testit/HEAD/test/testit/facts_test.cljc -------------------------------------------------------------------------------- /test/testit/in_test.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metosin/testit/HEAD/test/testit/in_test.cljc -------------------------------------------------------------------------------- /test/testit/macros.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metosin/testit/HEAD/test/testit/macros.cljc -------------------------------------------------------------------------------- /test/testit/runner.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metosin/testit/HEAD/test/testit/runner.cljs -------------------------------------------------------------------------------- /test/testit/throws_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metosin/testit/HEAD/test/testit/throws_test.clj --------------------------------------------------------------------------------