Last active
May 25, 2018 18:43
-
-
Save iantruslove/a912694160728b4f1e9a1cd3722291b0 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(ns specfoo.core | |
(:require [clojure.spec.gen.alpha :as gen] | |
[clojure.spec.alpha :as s])) | |
(distinct (remove coll? (gen/sample (s/gen any?) 100))) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defproject specfoo "0.1.0-SNAPSHOT" | |
:description "FIXME: write description" | |
:url "http://example.com/FIXME" | |
:license {:name "Eclipse Public License" | |
:url "http://www.eclipse.org/legal/epl-v10.html"} | |
:dependencies [[org.clojure/clojure "1.9.0"] | |
[org.clojure/spec.alpha "0.1.143"] | |
[org.clojure/test.check "0.10.0-alpha2"]]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment