├── .VERSION_PREFIX ├── .circleci └── config.yml ├── .dir-locals.el ├── .github └── workflows │ ├── add_to_project_board.yml │ ├── bb.yml │ └── canary.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE.txt ├── README.md ├── bb-tests.edn ├── bb.edn ├── bin ├── .VERSION_PREFIX ├── generate_toc ├── kaocha ├── proj ├── update_project_list.ed └── update_toc.ed ├── code_of_conduct.txt ├── deps.edn ├── dev └── user.clj ├── doc ├── 01_introduction.md ├── 02_installing.md ├── 03_configuration.md ├── 04_running_kaocha_cli.md ├── 05_running_kaocha_repl.md ├── 06_focusing_and_skipping.md ├── 07_watch_mode.md ├── 08_plugins.md ├── 09_extending.md ├── 10_hooks.md ├── cljdoc.edn ├── clojure_test │ └── assertions.md ├── command_line │ ├── capability_check.md │ ├── fail_fast.md │ ├── print_config.md │ ├── profile.md │ ├── reporter.md │ └── suite_names.md ├── config │ ├── bindings.md │ └── warnings.md ├── extensions.png ├── filtering │ ├── focus_meta.md │ ├── focusing.md │ ├── skip_meta.md │ └── skipping.md ├── images │ └── deep-diff.png ├── pending.md ├── plugins │ ├── capture_output.md │ ├── hooks_plugin.md │ ├── notifier_plugin.md │ ├── orchestra_plugin.md │ └── version_filter.md ├── spec_test_check.md └── syntax_error.md ├── examples └── blame_report.clj ├── fixtures ├── a-tests │ ├── baz │ │ └── qux_test.clj │ └── foo │ │ └── bar_test.clj ├── b-tests │ └── finn │ │ └── finn_test.clj ├── c-tests │ └── foo │ │ └── hello_test.clj ├── custom_config.edn ├── d-tests │ └── ddd │ │ ├── bar_test.clj │ │ ├── double_once_fixture_test.clj │ │ ├── exception_outside_is.clj │ │ └── foo_test.clj ├── e-tests │ └── eee │ │ └── bad_code_test.clj ├── tests.edn ├── with_compile_error.edn ├── with_exception.edn └── with_failing.edn ├── kaocha.png ├── notes.org ├── pom.xml ├── repl_sessions └── strict_focus_meta_hook.clj ├── resources └── kaocha │ ├── clojure_logo.png │ └── default_config.edn ├── src └── kaocha │ ├── api.clj │ ├── assertions.clj │ ├── classpath.bb │ ├── classpath.clj │ ├── config.clj │ ├── core_ext.clj │ ├── hierarchy.clj │ ├── history.clj │ ├── jit.clj │ ├── load.clj │ ├── matcher_combinators.clj │ ├── monkey_patch.clj │ ├── ns.clj │ ├── output.clj │ ├── platform.clj │ ├── platform │ ├── systray.bb │ └── systray.clj │ ├── plugin.clj │ ├── plugin │ ├── alpha │ │ ├── info.clj │ │ ├── spec_test_check.clj │ │ └── xfail.clj │ ├── capture_output.cljc │ ├── debug.clj │ ├── filter.clj │ ├── gc_profiling.clj │ ├── hooks.clj │ ├── notifier.clj │ ├── orchestra.clj │ ├── preloads.clj │ ├── print_invocations.clj │ ├── profiling.clj │ ├── randomize.clj │ └── version_filter.clj │ ├── random.clj │ ├── repl.clj │ ├── report.clj │ ├── report │ └── progress.clj │ ├── result.clj │ ├── runner.clj │ ├── shellwords.clj │ ├── specs.clj │ ├── stacktrace.clj │ ├── test_suite.clj │ ├── testable.clj │ ├── type.clj │ ├── type │ ├── clojure │ │ └── test.clj │ ├── ns.clj │ ├── spec │ │ └── test │ │ │ ├── check.clj │ │ │ ├── fdef.clj │ │ │ └── ns.clj │ └── var.clj │ ├── util.clj │ ├── version_check.clj │ └── watch.clj ├── test ├── bb │ └── kaocha │ │ ├── bb_test.clj │ │ └── canary.clj ├── features │ ├── clojure_test │ │ └── assertions.feature │ ├── command_line │ │ ├── capability_check.feature │ │ ├── fail_fast.feature │ │ ├── print_config.feature │ │ ├── profile.feature │ │ ├── reporter.feature │ │ └── suite_names.feature │ ├── config │ │ ├── bindings.feature │ │ └── warnings.feature │ ├── filtering │ │ ├── focus_meta.feature │ │ ├── focusing.feature │ │ ├── skip_meta.feature │ │ └── skipping.feature │ ├── pending.feature │ ├── plugins │ │ ├── capture_output.feature │ │ ├── hooks_plugin.feature │ │ ├── notifier_plugin.feature │ │ ├── orchestra_plugin.feature │ │ └── version_filter.feature │ ├── spec_test_check.feature │ └── syntax_error.feature ├── shared │ └── kaocha │ │ ├── integration_helpers.clj │ │ ├── test_factories.clj │ │ ├── test_helper.clj │ │ ├── test_plugins.clj │ │ └── test_util.clj ├── step_definitions │ └── kaocha_integration.clj └── unit │ └── kaocha │ ├── api_test.clj │ ├── config │ ├── included-test.edn │ ├── loaded-test-profile.edn │ ├── loaded-test-resource.edn │ ├── loaded-test-spec-mismatch.edn │ └── loaded-test.edn │ ├── config_test.clj │ ├── core_ext_test.clj │ ├── fixtures_test.clj │ ├── hierarchy_test.clj │ ├── history_test.clj │ ├── monkey_patch_test.clj │ ├── output_test.clj │ ├── plugin │ ├── alpha │ │ └── spec_test_check_test.clj │ ├── capture_output_test.clj │ ├── filter_test.clj │ ├── gc_profiling_test.clj │ ├── hooks_test.clj │ ├── notifier_test.clj │ ├── randomize_test.clj │ └── version_filter_test.clj │ ├── plugin_test.clj │ ├── post_assertion_test.clj │ ├── private_test.clj │ ├── random_test.clj │ ├── repl_test.clj │ ├── report_test.clj │ ├── result_test.clj │ ├── runner_test.clj │ ├── testable_test.clj │ ├── type │ ├── clojure │ │ └── test_test.clj │ ├── ns_test.clj │ └── var_test.clj │ ├── version_check_test.clj │ └── watch_test.clj └── tests.edn /.VERSION_PREFIX: -------------------------------------------------------------------------------- 1 | 1.91 -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.dir-locals.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/.dir-locals.el -------------------------------------------------------------------------------- /.github/workflows/add_to_project_board.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/.github/workflows/add_to_project_board.yml -------------------------------------------------------------------------------- /.github/workflows/bb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/.github/workflows/bb.yml -------------------------------------------------------------------------------- /.github/workflows/canary.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/.github/workflows/canary.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/README.md -------------------------------------------------------------------------------- /bb-tests.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/bb-tests.edn -------------------------------------------------------------------------------- /bb.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/bb.edn -------------------------------------------------------------------------------- /bin/.VERSION_PREFIX: -------------------------------------------------------------------------------- 1 | 1.0 -------------------------------------------------------------------------------- /bin/generate_toc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/bin/generate_toc -------------------------------------------------------------------------------- /bin/kaocha: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/bin/kaocha -------------------------------------------------------------------------------- /bin/proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/bin/proj -------------------------------------------------------------------------------- /bin/update_project_list.ed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/bin/update_project_list.ed -------------------------------------------------------------------------------- /bin/update_toc.ed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/bin/update_toc.ed -------------------------------------------------------------------------------- /code_of_conduct.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/code_of_conduct.txt -------------------------------------------------------------------------------- /deps.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/deps.edn -------------------------------------------------------------------------------- /dev/user.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/dev/user.clj -------------------------------------------------------------------------------- /doc/01_introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/doc/01_introduction.md -------------------------------------------------------------------------------- /doc/02_installing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/doc/02_installing.md -------------------------------------------------------------------------------- /doc/03_configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/doc/03_configuration.md -------------------------------------------------------------------------------- /doc/04_running_kaocha_cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/doc/04_running_kaocha_cli.md -------------------------------------------------------------------------------- /doc/05_running_kaocha_repl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/doc/05_running_kaocha_repl.md -------------------------------------------------------------------------------- /doc/06_focusing_and_skipping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/doc/06_focusing_and_skipping.md -------------------------------------------------------------------------------- /doc/07_watch_mode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/doc/07_watch_mode.md -------------------------------------------------------------------------------- /doc/08_plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/doc/08_plugins.md -------------------------------------------------------------------------------- /doc/09_extending.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/doc/09_extending.md -------------------------------------------------------------------------------- /doc/10_hooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/doc/10_hooks.md -------------------------------------------------------------------------------- /doc/cljdoc.edn: -------------------------------------------------------------------------------- 1 | {:cljdoc/languages ["clj"]} 2 | -------------------------------------------------------------------------------- /doc/clojure_test/assertions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/doc/clojure_test/assertions.md -------------------------------------------------------------------------------- /doc/command_line/capability_check.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/doc/command_line/capability_check.md -------------------------------------------------------------------------------- /doc/command_line/fail_fast.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/doc/command_line/fail_fast.md -------------------------------------------------------------------------------- /doc/command_line/print_config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/doc/command_line/print_config.md -------------------------------------------------------------------------------- /doc/command_line/profile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/doc/command_line/profile.md -------------------------------------------------------------------------------- /doc/command_line/reporter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/doc/command_line/reporter.md -------------------------------------------------------------------------------- /doc/command_line/suite_names.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/doc/command_line/suite_names.md -------------------------------------------------------------------------------- /doc/config/bindings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/doc/config/bindings.md -------------------------------------------------------------------------------- /doc/config/warnings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/doc/config/warnings.md -------------------------------------------------------------------------------- /doc/extensions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/doc/extensions.png -------------------------------------------------------------------------------- /doc/filtering/focus_meta.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/doc/filtering/focus_meta.md -------------------------------------------------------------------------------- /doc/filtering/focusing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/doc/filtering/focusing.md -------------------------------------------------------------------------------- /doc/filtering/skip_meta.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/doc/filtering/skip_meta.md -------------------------------------------------------------------------------- /doc/filtering/skipping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/doc/filtering/skipping.md -------------------------------------------------------------------------------- /doc/images/deep-diff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/doc/images/deep-diff.png -------------------------------------------------------------------------------- /doc/pending.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/doc/pending.md -------------------------------------------------------------------------------- /doc/plugins/capture_output.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/doc/plugins/capture_output.md -------------------------------------------------------------------------------- /doc/plugins/hooks_plugin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/doc/plugins/hooks_plugin.md -------------------------------------------------------------------------------- /doc/plugins/notifier_plugin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/doc/plugins/notifier_plugin.md -------------------------------------------------------------------------------- /doc/plugins/orchestra_plugin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/doc/plugins/orchestra_plugin.md -------------------------------------------------------------------------------- /doc/plugins/version_filter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/doc/plugins/version_filter.md -------------------------------------------------------------------------------- /doc/spec_test_check.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/doc/spec_test_check.md -------------------------------------------------------------------------------- /doc/syntax_error.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/doc/syntax_error.md -------------------------------------------------------------------------------- /examples/blame_report.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/examples/blame_report.clj -------------------------------------------------------------------------------- /fixtures/a-tests/baz/qux_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/fixtures/a-tests/baz/qux_test.clj -------------------------------------------------------------------------------- /fixtures/a-tests/foo/bar_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/fixtures/a-tests/foo/bar_test.clj -------------------------------------------------------------------------------- /fixtures/b-tests/finn/finn_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/fixtures/b-tests/finn/finn_test.clj -------------------------------------------------------------------------------- /fixtures/c-tests/foo/hello_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/fixtures/c-tests/foo/hello_test.clj -------------------------------------------------------------------------------- /fixtures/custom_config.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/fixtures/custom_config.edn -------------------------------------------------------------------------------- /fixtures/d-tests/ddd/bar_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/fixtures/d-tests/ddd/bar_test.clj -------------------------------------------------------------------------------- /fixtures/d-tests/ddd/double_once_fixture_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/fixtures/d-tests/ddd/double_once_fixture_test.clj -------------------------------------------------------------------------------- /fixtures/d-tests/ddd/exception_outside_is.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/fixtures/d-tests/ddd/exception_outside_is.clj -------------------------------------------------------------------------------- /fixtures/d-tests/ddd/foo_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/fixtures/d-tests/ddd/foo_test.clj -------------------------------------------------------------------------------- /fixtures/e-tests/eee/bad_code_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/fixtures/e-tests/eee/bad_code_test.clj -------------------------------------------------------------------------------- /fixtures/tests.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/fixtures/tests.edn -------------------------------------------------------------------------------- /fixtures/with_compile_error.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/fixtures/with_compile_error.edn -------------------------------------------------------------------------------- /fixtures/with_exception.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/fixtures/with_exception.edn -------------------------------------------------------------------------------- /fixtures/with_failing.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/fixtures/with_failing.edn -------------------------------------------------------------------------------- /kaocha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/kaocha.png -------------------------------------------------------------------------------- /notes.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/notes.org -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/pom.xml -------------------------------------------------------------------------------- /repl_sessions/strict_focus_meta_hook.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/repl_sessions/strict_focus_meta_hook.clj -------------------------------------------------------------------------------- /resources/kaocha/clojure_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/resources/kaocha/clojure_logo.png -------------------------------------------------------------------------------- /resources/kaocha/default_config.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/resources/kaocha/default_config.edn -------------------------------------------------------------------------------- /src/kaocha/api.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/src/kaocha/api.clj -------------------------------------------------------------------------------- /src/kaocha/assertions.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/src/kaocha/assertions.clj -------------------------------------------------------------------------------- /src/kaocha/classpath.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/src/kaocha/classpath.bb -------------------------------------------------------------------------------- /src/kaocha/classpath.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/src/kaocha/classpath.clj -------------------------------------------------------------------------------- /src/kaocha/config.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/src/kaocha/config.clj -------------------------------------------------------------------------------- /src/kaocha/core_ext.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/src/kaocha/core_ext.clj -------------------------------------------------------------------------------- /src/kaocha/hierarchy.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/src/kaocha/hierarchy.clj -------------------------------------------------------------------------------- /src/kaocha/history.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/src/kaocha/history.clj -------------------------------------------------------------------------------- /src/kaocha/jit.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/src/kaocha/jit.clj -------------------------------------------------------------------------------- /src/kaocha/load.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/src/kaocha/load.clj -------------------------------------------------------------------------------- /src/kaocha/matcher_combinators.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/src/kaocha/matcher_combinators.clj -------------------------------------------------------------------------------- /src/kaocha/monkey_patch.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/src/kaocha/monkey_patch.clj -------------------------------------------------------------------------------- /src/kaocha/ns.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/src/kaocha/ns.clj -------------------------------------------------------------------------------- /src/kaocha/output.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/src/kaocha/output.clj -------------------------------------------------------------------------------- /src/kaocha/platform.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/src/kaocha/platform.clj -------------------------------------------------------------------------------- /src/kaocha/platform/systray.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/src/kaocha/platform/systray.bb -------------------------------------------------------------------------------- /src/kaocha/platform/systray.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/src/kaocha/platform/systray.clj -------------------------------------------------------------------------------- /src/kaocha/plugin.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/src/kaocha/plugin.clj -------------------------------------------------------------------------------- /src/kaocha/plugin/alpha/info.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/src/kaocha/plugin/alpha/info.clj -------------------------------------------------------------------------------- /src/kaocha/plugin/alpha/spec_test_check.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/src/kaocha/plugin/alpha/spec_test_check.clj -------------------------------------------------------------------------------- /src/kaocha/plugin/alpha/xfail.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/src/kaocha/plugin/alpha/xfail.clj -------------------------------------------------------------------------------- /src/kaocha/plugin/capture_output.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/src/kaocha/plugin/capture_output.cljc -------------------------------------------------------------------------------- /src/kaocha/plugin/debug.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/src/kaocha/plugin/debug.clj -------------------------------------------------------------------------------- /src/kaocha/plugin/filter.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/src/kaocha/plugin/filter.clj -------------------------------------------------------------------------------- /src/kaocha/plugin/gc_profiling.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/src/kaocha/plugin/gc_profiling.clj -------------------------------------------------------------------------------- /src/kaocha/plugin/hooks.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/src/kaocha/plugin/hooks.clj -------------------------------------------------------------------------------- /src/kaocha/plugin/notifier.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/src/kaocha/plugin/notifier.clj -------------------------------------------------------------------------------- /src/kaocha/plugin/orchestra.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/src/kaocha/plugin/orchestra.clj -------------------------------------------------------------------------------- /src/kaocha/plugin/preloads.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/src/kaocha/plugin/preloads.clj -------------------------------------------------------------------------------- /src/kaocha/plugin/print_invocations.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/src/kaocha/plugin/print_invocations.clj -------------------------------------------------------------------------------- /src/kaocha/plugin/profiling.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/src/kaocha/plugin/profiling.clj -------------------------------------------------------------------------------- /src/kaocha/plugin/randomize.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/src/kaocha/plugin/randomize.clj -------------------------------------------------------------------------------- /src/kaocha/plugin/version_filter.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/src/kaocha/plugin/version_filter.clj -------------------------------------------------------------------------------- /src/kaocha/random.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/src/kaocha/random.clj -------------------------------------------------------------------------------- /src/kaocha/repl.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/src/kaocha/repl.clj -------------------------------------------------------------------------------- /src/kaocha/report.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/src/kaocha/report.clj -------------------------------------------------------------------------------- /src/kaocha/report/progress.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/src/kaocha/report/progress.clj -------------------------------------------------------------------------------- /src/kaocha/result.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/src/kaocha/result.clj -------------------------------------------------------------------------------- /src/kaocha/runner.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/src/kaocha/runner.clj -------------------------------------------------------------------------------- /src/kaocha/shellwords.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/src/kaocha/shellwords.clj -------------------------------------------------------------------------------- /src/kaocha/specs.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/src/kaocha/specs.clj -------------------------------------------------------------------------------- /src/kaocha/stacktrace.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/src/kaocha/stacktrace.clj -------------------------------------------------------------------------------- /src/kaocha/test_suite.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/src/kaocha/test_suite.clj -------------------------------------------------------------------------------- /src/kaocha/testable.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/src/kaocha/testable.clj -------------------------------------------------------------------------------- /src/kaocha/type.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/src/kaocha/type.clj -------------------------------------------------------------------------------- /src/kaocha/type/clojure/test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/src/kaocha/type/clojure/test.clj -------------------------------------------------------------------------------- /src/kaocha/type/ns.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/src/kaocha/type/ns.clj -------------------------------------------------------------------------------- /src/kaocha/type/spec/test/check.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/src/kaocha/type/spec/test/check.clj -------------------------------------------------------------------------------- /src/kaocha/type/spec/test/fdef.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/src/kaocha/type/spec/test/fdef.clj -------------------------------------------------------------------------------- /src/kaocha/type/spec/test/ns.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/src/kaocha/type/spec/test/ns.clj -------------------------------------------------------------------------------- /src/kaocha/type/var.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/src/kaocha/type/var.clj -------------------------------------------------------------------------------- /src/kaocha/util.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/src/kaocha/util.clj -------------------------------------------------------------------------------- /src/kaocha/version_check.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/src/kaocha/version_check.clj -------------------------------------------------------------------------------- /src/kaocha/watch.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/src/kaocha/watch.clj -------------------------------------------------------------------------------- /test/bb/kaocha/bb_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/test/bb/kaocha/bb_test.clj -------------------------------------------------------------------------------- /test/bb/kaocha/canary.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/test/bb/kaocha/canary.clj -------------------------------------------------------------------------------- /test/features/clojure_test/assertions.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/test/features/clojure_test/assertions.feature -------------------------------------------------------------------------------- /test/features/command_line/capability_check.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/test/features/command_line/capability_check.feature -------------------------------------------------------------------------------- /test/features/command_line/fail_fast.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/test/features/command_line/fail_fast.feature -------------------------------------------------------------------------------- /test/features/command_line/print_config.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/test/features/command_line/print_config.feature -------------------------------------------------------------------------------- /test/features/command_line/profile.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/test/features/command_line/profile.feature -------------------------------------------------------------------------------- /test/features/command_line/reporter.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/test/features/command_line/reporter.feature -------------------------------------------------------------------------------- /test/features/command_line/suite_names.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/test/features/command_line/suite_names.feature -------------------------------------------------------------------------------- /test/features/config/bindings.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/test/features/config/bindings.feature -------------------------------------------------------------------------------- /test/features/config/warnings.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/test/features/config/warnings.feature -------------------------------------------------------------------------------- /test/features/filtering/focus_meta.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/test/features/filtering/focus_meta.feature -------------------------------------------------------------------------------- /test/features/filtering/focusing.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/test/features/filtering/focusing.feature -------------------------------------------------------------------------------- /test/features/filtering/skip_meta.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/test/features/filtering/skip_meta.feature -------------------------------------------------------------------------------- /test/features/filtering/skipping.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/test/features/filtering/skipping.feature -------------------------------------------------------------------------------- /test/features/pending.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/test/features/pending.feature -------------------------------------------------------------------------------- /test/features/plugins/capture_output.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/test/features/plugins/capture_output.feature -------------------------------------------------------------------------------- /test/features/plugins/hooks_plugin.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/test/features/plugins/hooks_plugin.feature -------------------------------------------------------------------------------- /test/features/plugins/notifier_plugin.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/test/features/plugins/notifier_plugin.feature -------------------------------------------------------------------------------- /test/features/plugins/orchestra_plugin.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/test/features/plugins/orchestra_plugin.feature -------------------------------------------------------------------------------- /test/features/plugins/version_filter.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/test/features/plugins/version_filter.feature -------------------------------------------------------------------------------- /test/features/spec_test_check.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/test/features/spec_test_check.feature -------------------------------------------------------------------------------- /test/features/syntax_error.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/test/features/syntax_error.feature -------------------------------------------------------------------------------- /test/shared/kaocha/integration_helpers.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/test/shared/kaocha/integration_helpers.clj -------------------------------------------------------------------------------- /test/shared/kaocha/test_factories.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/test/shared/kaocha/test_factories.clj -------------------------------------------------------------------------------- /test/shared/kaocha/test_helper.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/test/shared/kaocha/test_helper.clj -------------------------------------------------------------------------------- /test/shared/kaocha/test_plugins.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/test/shared/kaocha/test_plugins.clj -------------------------------------------------------------------------------- /test/shared/kaocha/test_util.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/test/shared/kaocha/test_util.clj -------------------------------------------------------------------------------- /test/step_definitions/kaocha_integration.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/test/step_definitions/kaocha_integration.clj -------------------------------------------------------------------------------- /test/unit/kaocha/api_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/test/unit/kaocha/api_test.clj -------------------------------------------------------------------------------- /test/unit/kaocha/config/included-test.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/test/unit/kaocha/config/included-test.edn -------------------------------------------------------------------------------- /test/unit/kaocha/config/loaded-test-profile.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/test/unit/kaocha/config/loaded-test-profile.edn -------------------------------------------------------------------------------- /test/unit/kaocha/config/loaded-test-resource.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/test/unit/kaocha/config/loaded-test-resource.edn -------------------------------------------------------------------------------- /test/unit/kaocha/config/loaded-test-spec-mismatch.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/test/unit/kaocha/config/loaded-test-spec-mismatch.edn -------------------------------------------------------------------------------- /test/unit/kaocha/config/loaded-test.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/test/unit/kaocha/config/loaded-test.edn -------------------------------------------------------------------------------- /test/unit/kaocha/config_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/test/unit/kaocha/config_test.clj -------------------------------------------------------------------------------- /test/unit/kaocha/core_ext_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/test/unit/kaocha/core_ext_test.clj -------------------------------------------------------------------------------- /test/unit/kaocha/fixtures_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/test/unit/kaocha/fixtures_test.clj -------------------------------------------------------------------------------- /test/unit/kaocha/hierarchy_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/test/unit/kaocha/hierarchy_test.clj -------------------------------------------------------------------------------- /test/unit/kaocha/history_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/test/unit/kaocha/history_test.clj -------------------------------------------------------------------------------- /test/unit/kaocha/monkey_patch_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/test/unit/kaocha/monkey_patch_test.clj -------------------------------------------------------------------------------- /test/unit/kaocha/output_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/test/unit/kaocha/output_test.clj -------------------------------------------------------------------------------- /test/unit/kaocha/plugin/alpha/spec_test_check_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/test/unit/kaocha/plugin/alpha/spec_test_check_test.clj -------------------------------------------------------------------------------- /test/unit/kaocha/plugin/capture_output_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/test/unit/kaocha/plugin/capture_output_test.clj -------------------------------------------------------------------------------- /test/unit/kaocha/plugin/filter_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/test/unit/kaocha/plugin/filter_test.clj -------------------------------------------------------------------------------- /test/unit/kaocha/plugin/gc_profiling_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/test/unit/kaocha/plugin/gc_profiling_test.clj -------------------------------------------------------------------------------- /test/unit/kaocha/plugin/hooks_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/test/unit/kaocha/plugin/hooks_test.clj -------------------------------------------------------------------------------- /test/unit/kaocha/plugin/notifier_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/test/unit/kaocha/plugin/notifier_test.clj -------------------------------------------------------------------------------- /test/unit/kaocha/plugin/randomize_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/test/unit/kaocha/plugin/randomize_test.clj -------------------------------------------------------------------------------- /test/unit/kaocha/plugin/version_filter_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/test/unit/kaocha/plugin/version_filter_test.clj -------------------------------------------------------------------------------- /test/unit/kaocha/plugin_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/test/unit/kaocha/plugin_test.clj -------------------------------------------------------------------------------- /test/unit/kaocha/post_assertion_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/test/unit/kaocha/post_assertion_test.clj -------------------------------------------------------------------------------- /test/unit/kaocha/private_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/test/unit/kaocha/private_test.clj -------------------------------------------------------------------------------- /test/unit/kaocha/random_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/test/unit/kaocha/random_test.clj -------------------------------------------------------------------------------- /test/unit/kaocha/repl_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/test/unit/kaocha/repl_test.clj -------------------------------------------------------------------------------- /test/unit/kaocha/report_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/test/unit/kaocha/report_test.clj -------------------------------------------------------------------------------- /test/unit/kaocha/result_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/test/unit/kaocha/result_test.clj -------------------------------------------------------------------------------- /test/unit/kaocha/runner_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/test/unit/kaocha/runner_test.clj -------------------------------------------------------------------------------- /test/unit/kaocha/testable_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/test/unit/kaocha/testable_test.clj -------------------------------------------------------------------------------- /test/unit/kaocha/type/clojure/test_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/test/unit/kaocha/type/clojure/test_test.clj -------------------------------------------------------------------------------- /test/unit/kaocha/type/ns_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/test/unit/kaocha/type/ns_test.clj -------------------------------------------------------------------------------- /test/unit/kaocha/type/var_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/test/unit/kaocha/type/var_test.clj -------------------------------------------------------------------------------- /test/unit/kaocha/version_check_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/test/unit/kaocha/version_check_test.clj -------------------------------------------------------------------------------- /test/unit/kaocha/watch_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/test/unit/kaocha/watch_test.clj -------------------------------------------------------------------------------- /tests.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/kaocha/HEAD/tests.edn --------------------------------------------------------------------------------