Fork me on GitHub
#clojure-europe
<
2020-05-26
>
synthomat05:05:44

good morning šŸ‘‹

ordnungswidrig09:05:36

@raymcdermott what Iā€™m missing the soft-equalitiy of midje. something like (is (=~ {:a 1 :b 2 } {:a 1}))

genRaiy13:05:16

yeah - it seems kinda sad that we don't have a lot of innovation in the core testing space even though lots of good stuff is happening around and about

plexus16:05:10

@ordnungswidrig you're looking for matcher-combinators

plexus16:05:30

(is (match? {:a 1} {:a 1 :b 2}))

ordnungswidrig17:05:20

@plexus aha! Sounds like I need to investigate!