Skip to content

Latest commit

 

History

History
47 lines (31 loc) · 1.29 KB

readme.adoc

File metadata and controls

47 lines (31 loc) · 1.29 KB

license https://github.com/lazy-cat-io/equalizer/releases clojars

codecov build deploy

equalizer

A Clojure(Script) library for data-driven tests.

Getting started

Add the following dependency in your project:

project.clj or build.boot
[io.lazy-cat/equalizer "RELEASE"]
deps.edn or bb.edn
io.lazy-cat/equalizer {:mvn/version "RELEASE"}

Basic API

(ns example
  (:require
    [equalizer.core :as eq]))

(eq/match pos-int? 42)
;; => true