metosin/malli

m/-tuple-transformer is broken in many ways

Aperta

#578 aperta il 21 nov 2021

 (1 commento) (0 reazioni) (0 assegnatari)Clojure (237 fork)batch import
bughelp wanted

Metriche repository

Star
 (1724 stelle)
Metriche merge PR
 (Nessuna PR mergiata in 30 g)

Descrizione

;; ok
(m/decode
  [:tuple string? string?]
  []
  (mt/string-transformer))
; => []

;; fail
(m/decode
  [:tuple keyword? string?]
  []
  (mt/string-transformer))
; => [nil]

;; megafail
(m/decode
  [:tuple string? keyword?]
  []
  (mt/string-transformer))
; =throws=> Execution error (IndexOutOfBoundsException) at malli.core/-update (core.cljc:194).

Guida contributor