Skip to content

Latest commit

 

History

History
21 lines (17 loc) · 814 Bytes

README.md

File metadata and controls

21 lines (17 loc) · 814 Bytes

Minicheck

Minicheck is an implementation of QuickCheck in clojure that runs with clojure.test.

Refer to the example which is a port of the quicksort example from Chapter 11 of Real World Haskell

Install

  1. Copy minicheck.clj into your project

Installing with Leiningen

  1. Install leiningen
  2. Add minicheck to your project.clj (defproject your-project "0.0.0-SNAPSHOT" :dependencies [[org.clojure/clojure "1.1.0-alpha-SNAPSHOT"] [org.clojure/clojure-contrib "1.0-SNAPSHOT"]] :dev-dependencies [[minicheck "0.3.0"]])
  3. Run with: lein test