├── .clj-kondo ├── config.edn └── imports │ ├── com.github.seancorfield │ └── expectations │ │ ├── config.edn │ │ └── hooks │ │ └── com │ │ └── github │ │ └── seancorfield │ │ └── expectations.clj_kondo │ ├── com.noahbogart │ └── sinker │ │ ├── config.edn │ │ └── hooks │ │ └── sinker │ │ └── try_plus.clj │ ├── cond_plus │ └── cond_plus │ │ ├── config.edn │ │ └── hooks │ │ └── cond_plus_hook.clj │ ├── io.github.noahtheduke │ ├── cond_plus │ │ ├── config.edn │ │ └── hooks │ │ │ └── cond_plus_hook.clj │ └── lazytest │ │ ├── config.edn │ │ └── hooks │ │ └── lazytest │ │ └── expectations.clj_kondo │ └── rewrite-clj │ └── rewrite-clj │ └── config.edn ├── .github └── FUNDING.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── data └── impl │ └── template.edn ├── deps.edn ├── doc ├── cljdoc.edn ├── names-variables.md ├── options.md └── templates.md ├── outdated.txt ├── resources └── org │ └── corfield │ └── new │ ├── app │ ├── build-bb │ │ ├── README.md │ │ ├── bb.tmpl │ │ ├── build.tmpl │ │ └── deps.tmpl │ ├── build │ │ ├── README.md │ │ ├── build.tmpl │ │ └── deps.tmpl │ ├── root │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── doc │ │ │ └── intro.md │ │ └── resources │ │ │ └── .keep │ ├── src │ │ └── main.tmpl │ ├── template.edn │ └── test │ │ └── main_test.tmpl │ ├── lib │ ├── build-bb │ │ ├── README.md │ │ ├── bb.tmpl │ │ ├── build.tmpl │ │ └── deps.tmpl │ ├── build │ │ ├── README.md │ │ ├── build.tmpl │ │ └── deps.tmpl │ ├── root │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── doc │ │ │ └── intro.md │ │ └── resources │ │ │ └── .keep │ ├── src │ │ └── main.tmpl │ ├── template.edn │ └── test │ │ └── main_test.tmpl │ ├── pom │ ├── root │ │ └── pom.xml │ └── template.edn │ ├── scratch │ ├── build │ │ └── deps.tmpl │ ├── root │ │ └── .gitignore │ ├── src │ │ └── scratch.tmpl │ └── template.edn │ └── template │ ├── build │ ├── build.tmpl │ ├── deps.tmpl │ └── template.tmpl │ ├── resources │ ├── build │ │ ├── build.tmpl │ │ └── deps.tmpl │ ├── root │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc │ │ │ └── intro.md │ │ └── resources │ │ │ └── .keep │ ├── src │ │ └── main.tmpl │ └── test │ │ └── main_test.tmpl │ ├── root │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── doc │ │ └── intro.md │ └── resources │ │ └── .keep │ ├── src │ └── main.tmpl │ ├── template.edn │ └── test │ └── main_test.tmpl ├── src └── org │ └── corfield │ ├── new.clj │ └── new │ ├── impl.clj │ └── transformers.clj └── test └── org └── corfield └── new ├── impl_test.clj └── transformers_test.clj /.clj-kondo/config.edn: -------------------------------------------------------------------------------- 1 | {:config-paths ["com.github.seancorfield/expectations"]} 2 | -------------------------------------------------------------------------------- /.clj-kondo/imports/com.github.seancorfield/expectations/config.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancorfield/deps-new/HEAD/.clj-kondo/imports/com.github.seancorfield/expectations/config.edn -------------------------------------------------------------------------------- /.clj-kondo/imports/com.github.seancorfield/expectations/hooks/com/github/seancorfield/expectations.clj_kondo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancorfield/deps-new/HEAD/.clj-kondo/imports/com.github.seancorfield/expectations/hooks/com/github/seancorfield/expectations.clj_kondo -------------------------------------------------------------------------------- /.clj-kondo/imports/com.noahbogart/sinker/config.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancorfield/deps-new/HEAD/.clj-kondo/imports/com.noahbogart/sinker/config.edn -------------------------------------------------------------------------------- /.clj-kondo/imports/com.noahbogart/sinker/hooks/sinker/try_plus.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancorfield/deps-new/HEAD/.clj-kondo/imports/com.noahbogart/sinker/hooks/sinker/try_plus.clj -------------------------------------------------------------------------------- /.clj-kondo/imports/cond_plus/cond_plus/config.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancorfield/deps-new/HEAD/.clj-kondo/imports/cond_plus/cond_plus/config.edn -------------------------------------------------------------------------------- /.clj-kondo/imports/cond_plus/cond_plus/hooks/cond_plus_hook.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancorfield/deps-new/HEAD/.clj-kondo/imports/cond_plus/cond_plus/hooks/cond_plus_hook.clj -------------------------------------------------------------------------------- /.clj-kondo/imports/io.github.noahtheduke/cond_plus/config.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancorfield/deps-new/HEAD/.clj-kondo/imports/io.github.noahtheduke/cond_plus/config.edn -------------------------------------------------------------------------------- /.clj-kondo/imports/io.github.noahtheduke/cond_plus/hooks/cond_plus_hook.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancorfield/deps-new/HEAD/.clj-kondo/imports/io.github.noahtheduke/cond_plus/hooks/cond_plus_hook.clj -------------------------------------------------------------------------------- /.clj-kondo/imports/io.github.noahtheduke/lazytest/config.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancorfield/deps-new/HEAD/.clj-kondo/imports/io.github.noahtheduke/lazytest/config.edn -------------------------------------------------------------------------------- /.clj-kondo/imports/io.github.noahtheduke/lazytest/hooks/lazytest/expectations.clj_kondo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancorfield/deps-new/HEAD/.clj-kondo/imports/io.github.noahtheduke/lazytest/hooks/lazytest/expectations.clj_kondo -------------------------------------------------------------------------------- /.clj-kondo/imports/rewrite-clj/rewrite-clj/config.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancorfield/deps-new/HEAD/.clj-kondo/imports/rewrite-clj/rewrite-clj/config.edn -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: seancorfield 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancorfield/deps-new/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancorfield/deps-new/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancorfield/deps-new/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancorfield/deps-new/HEAD/README.md -------------------------------------------------------------------------------- /data/impl/template.edn: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /deps.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancorfield/deps-new/HEAD/deps.edn -------------------------------------------------------------------------------- /doc/cljdoc.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancorfield/deps-new/HEAD/doc/cljdoc.edn -------------------------------------------------------------------------------- /doc/names-variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancorfield/deps-new/HEAD/doc/names-variables.md -------------------------------------------------------------------------------- /doc/options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancorfield/deps-new/HEAD/doc/options.md -------------------------------------------------------------------------------- /doc/templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancorfield/deps-new/HEAD/doc/templates.md -------------------------------------------------------------------------------- /outdated.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancorfield/deps-new/HEAD/outdated.txt -------------------------------------------------------------------------------- /resources/org/corfield/new/app/build-bb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancorfield/deps-new/HEAD/resources/org/corfield/new/app/build-bb/README.md -------------------------------------------------------------------------------- /resources/org/corfield/new/app/build-bb/bb.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancorfield/deps-new/HEAD/resources/org/corfield/new/app/build-bb/bb.tmpl -------------------------------------------------------------------------------- /resources/org/corfield/new/app/build-bb/build.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancorfield/deps-new/HEAD/resources/org/corfield/new/app/build-bb/build.tmpl -------------------------------------------------------------------------------- /resources/org/corfield/new/app/build-bb/deps.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancorfield/deps-new/HEAD/resources/org/corfield/new/app/build-bb/deps.tmpl -------------------------------------------------------------------------------- /resources/org/corfield/new/app/build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancorfield/deps-new/HEAD/resources/org/corfield/new/app/build/README.md -------------------------------------------------------------------------------- /resources/org/corfield/new/app/build/build.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancorfield/deps-new/HEAD/resources/org/corfield/new/app/build/build.tmpl -------------------------------------------------------------------------------- /resources/org/corfield/new/app/build/deps.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancorfield/deps-new/HEAD/resources/org/corfield/new/app/build/deps.tmpl -------------------------------------------------------------------------------- /resources/org/corfield/new/app/root/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancorfield/deps-new/HEAD/resources/org/corfield/new/app/root/.gitignore -------------------------------------------------------------------------------- /resources/org/corfield/new/app/root/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancorfield/deps-new/HEAD/resources/org/corfield/new/app/root/CHANGELOG.md -------------------------------------------------------------------------------- /resources/org/corfield/new/app/root/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancorfield/deps-new/HEAD/resources/org/corfield/new/app/root/LICENSE -------------------------------------------------------------------------------- /resources/org/corfield/new/app/root/doc/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancorfield/deps-new/HEAD/resources/org/corfield/new/app/root/doc/intro.md -------------------------------------------------------------------------------- /resources/org/corfield/new/app/root/resources/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/org/corfield/new/app/src/main.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancorfield/deps-new/HEAD/resources/org/corfield/new/app/src/main.tmpl -------------------------------------------------------------------------------- /resources/org/corfield/new/app/template.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancorfield/deps-new/HEAD/resources/org/corfield/new/app/template.edn -------------------------------------------------------------------------------- /resources/org/corfield/new/app/test/main_test.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancorfield/deps-new/HEAD/resources/org/corfield/new/app/test/main_test.tmpl -------------------------------------------------------------------------------- /resources/org/corfield/new/lib/build-bb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancorfield/deps-new/HEAD/resources/org/corfield/new/lib/build-bb/README.md -------------------------------------------------------------------------------- /resources/org/corfield/new/lib/build-bb/bb.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancorfield/deps-new/HEAD/resources/org/corfield/new/lib/build-bb/bb.tmpl -------------------------------------------------------------------------------- /resources/org/corfield/new/lib/build-bb/build.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancorfield/deps-new/HEAD/resources/org/corfield/new/lib/build-bb/build.tmpl -------------------------------------------------------------------------------- /resources/org/corfield/new/lib/build-bb/deps.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancorfield/deps-new/HEAD/resources/org/corfield/new/lib/build-bb/deps.tmpl -------------------------------------------------------------------------------- /resources/org/corfield/new/lib/build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancorfield/deps-new/HEAD/resources/org/corfield/new/lib/build/README.md -------------------------------------------------------------------------------- /resources/org/corfield/new/lib/build/build.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancorfield/deps-new/HEAD/resources/org/corfield/new/lib/build/build.tmpl -------------------------------------------------------------------------------- /resources/org/corfield/new/lib/build/deps.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancorfield/deps-new/HEAD/resources/org/corfield/new/lib/build/deps.tmpl -------------------------------------------------------------------------------- /resources/org/corfield/new/lib/root/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancorfield/deps-new/HEAD/resources/org/corfield/new/lib/root/.gitignore -------------------------------------------------------------------------------- /resources/org/corfield/new/lib/root/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancorfield/deps-new/HEAD/resources/org/corfield/new/lib/root/CHANGELOG.md -------------------------------------------------------------------------------- /resources/org/corfield/new/lib/root/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancorfield/deps-new/HEAD/resources/org/corfield/new/lib/root/LICENSE -------------------------------------------------------------------------------- /resources/org/corfield/new/lib/root/doc/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancorfield/deps-new/HEAD/resources/org/corfield/new/lib/root/doc/intro.md -------------------------------------------------------------------------------- /resources/org/corfield/new/lib/root/resources/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/org/corfield/new/lib/src/main.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancorfield/deps-new/HEAD/resources/org/corfield/new/lib/src/main.tmpl -------------------------------------------------------------------------------- /resources/org/corfield/new/lib/template.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancorfield/deps-new/HEAD/resources/org/corfield/new/lib/template.edn -------------------------------------------------------------------------------- /resources/org/corfield/new/lib/test/main_test.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancorfield/deps-new/HEAD/resources/org/corfield/new/lib/test/main_test.tmpl -------------------------------------------------------------------------------- /resources/org/corfield/new/pom/root/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancorfield/deps-new/HEAD/resources/org/corfield/new/pom/root/pom.xml -------------------------------------------------------------------------------- /resources/org/corfield/new/pom/template.edn: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /resources/org/corfield/new/scratch/build/deps.tmpl: -------------------------------------------------------------------------------- 1 | {:paths ["src"] 2 | :deps {}} 3 | -------------------------------------------------------------------------------- /resources/org/corfield/new/scratch/root/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancorfield/deps-new/HEAD/resources/org/corfield/new/scratch/root/.gitignore -------------------------------------------------------------------------------- /resources/org/corfield/new/scratch/src/scratch.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancorfield/deps-new/HEAD/resources/org/corfield/new/scratch/src/scratch.tmpl -------------------------------------------------------------------------------- /resources/org/corfield/new/scratch/template.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancorfield/deps-new/HEAD/resources/org/corfield/new/scratch/template.edn -------------------------------------------------------------------------------- /resources/org/corfield/new/template/build/build.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancorfield/deps-new/HEAD/resources/org/corfield/new/template/build/build.tmpl -------------------------------------------------------------------------------- /resources/org/corfield/new/template/build/deps.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancorfield/deps-new/HEAD/resources/org/corfield/new/template/build/deps.tmpl -------------------------------------------------------------------------------- /resources/org/corfield/new/template/build/template.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancorfield/deps-new/HEAD/resources/org/corfield/new/template/build/template.tmpl -------------------------------------------------------------------------------- /resources/org/corfield/new/template/resources/build/build.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancorfield/deps-new/HEAD/resources/org/corfield/new/template/resources/build/build.tmpl -------------------------------------------------------------------------------- /resources/org/corfield/new/template/resources/build/deps.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancorfield/deps-new/HEAD/resources/org/corfield/new/template/resources/build/deps.tmpl -------------------------------------------------------------------------------- /resources/org/corfield/new/template/resources/root/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancorfield/deps-new/HEAD/resources/org/corfield/new/template/resources/root/.gitignore -------------------------------------------------------------------------------- /resources/org/corfield/new/template/resources/root/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancorfield/deps-new/HEAD/resources/org/corfield/new/template/resources/root/CHANGELOG.md -------------------------------------------------------------------------------- /resources/org/corfield/new/template/resources/root/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancorfield/deps-new/HEAD/resources/org/corfield/new/template/resources/root/LICENSE -------------------------------------------------------------------------------- /resources/org/corfield/new/template/resources/root/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancorfield/deps-new/HEAD/resources/org/corfield/new/template/resources/root/README.md -------------------------------------------------------------------------------- /resources/org/corfield/new/template/resources/root/doc/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancorfield/deps-new/HEAD/resources/org/corfield/new/template/resources/root/doc/intro.md -------------------------------------------------------------------------------- /resources/org/corfield/new/template/resources/root/resources/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/org/corfield/new/template/resources/src/main.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancorfield/deps-new/HEAD/resources/org/corfield/new/template/resources/src/main.tmpl -------------------------------------------------------------------------------- /resources/org/corfield/new/template/resources/test/main_test.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancorfield/deps-new/HEAD/resources/org/corfield/new/template/resources/test/main_test.tmpl -------------------------------------------------------------------------------- /resources/org/corfield/new/template/root/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancorfield/deps-new/HEAD/resources/org/corfield/new/template/root/.gitignore -------------------------------------------------------------------------------- /resources/org/corfield/new/template/root/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancorfield/deps-new/HEAD/resources/org/corfield/new/template/root/CHANGELOG.md -------------------------------------------------------------------------------- /resources/org/corfield/new/template/root/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancorfield/deps-new/HEAD/resources/org/corfield/new/template/root/LICENSE -------------------------------------------------------------------------------- /resources/org/corfield/new/template/root/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancorfield/deps-new/HEAD/resources/org/corfield/new/template/root/README.md -------------------------------------------------------------------------------- /resources/org/corfield/new/template/root/doc/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancorfield/deps-new/HEAD/resources/org/corfield/new/template/root/doc/intro.md -------------------------------------------------------------------------------- /resources/org/corfield/new/template/root/resources/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/org/corfield/new/template/src/main.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancorfield/deps-new/HEAD/resources/org/corfield/new/template/src/main.tmpl -------------------------------------------------------------------------------- /resources/org/corfield/new/template/template.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancorfield/deps-new/HEAD/resources/org/corfield/new/template/template.edn -------------------------------------------------------------------------------- /resources/org/corfield/new/template/test/main_test.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancorfield/deps-new/HEAD/resources/org/corfield/new/template/test/main_test.tmpl -------------------------------------------------------------------------------- /src/org/corfield/new.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancorfield/deps-new/HEAD/src/org/corfield/new.clj -------------------------------------------------------------------------------- /src/org/corfield/new/impl.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancorfield/deps-new/HEAD/src/org/corfield/new/impl.clj -------------------------------------------------------------------------------- /src/org/corfield/new/transformers.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancorfield/deps-new/HEAD/src/org/corfield/new/transformers.clj -------------------------------------------------------------------------------- /test/org/corfield/new/impl_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancorfield/deps-new/HEAD/test/org/corfield/new/impl_test.clj -------------------------------------------------------------------------------- /test/org/corfield/new/transformers_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancorfield/deps-new/HEAD/test/org/corfield/new/transformers_test.clj --------------------------------------------------------------------------------