Phillip Mates

Results 11 issues of Phillip Mates

In a service I was working on I wanted to use a multimethod as an interceptor. It errored out and after a little digging I realized that the `IntoInterceptor` was...

It seems that `io.pedestal.log/with-context` only works properly when provided a map value and not a reference to a map value. For example ```clojure (log/with-context attrs (log/info :request attrs)) ``` gives...

It can be hard to track down the source of notebook evaluation errors. This PR adds the original file name and form for which the evaluation exception is relevant. for...

This is a code sketch of a feature I've been desiring in a test runner: when in watch mode, only rerun tests that have been affected by loaded changes ##...

fix for https://github.com/nubank/matcher-combinators/issues/181 after https://github.com/nubank/matcher-combinators/pull/178 was merged

Currently when a mismatch happens (in clojure.test) we use the entire `(match? the-expected the-actual)` form as the `Expected: ` field and the annotated mismatch diff as the `Actual: ` field....

Every run of ordnungsamt will lookup the set of migrations registered in `migrations.edn` of the migrations directory and compare it to the set of migrations that have already been registered...

## description allow the `:sources` option for `compliment.core/completion` and `compliment.core/documentation` work with a predicate function that operates over source definition maps (like `{:candidate ... :doc ... :enabled true :name :my.project/custom-source}`)....

addresses https://github.com/nubank/matcher-combinators/issues/177 before: ``` expected: (match? [1 2 3 4] [1 3 4]) actual: [1 (mismatch (expected 2) (actual 3)) (mismatch (expected 3) (actual 4)) (missing 4)] ``` after: ```...

The abbreviation feature (added in https://github.com/nubank/matcher-combinators/pull/214) seems to show no useful output for the following example ```clojure (require '[matcher-combinators.test :refer [match?]]) (require '[clojure.test :refer [is]]) ;; normal behavior (matcher-combinators.config/disable-abbreviation!) (is...