File tree 5 files changed +41
-0
lines changed
5 files changed +41
-0
lines changed Original file line number Diff line number Diff line change
1
+ /target
2
+ /lib
3
+ /classes
4
+ /checkouts
5
+ pom.xml
6
+ pom.xml.asc
7
+ * .jar
8
+ * .class
9
+ .lein-deps-sum
10
+ .lein-failures
11
+ .lein-plugins
12
+ .lein-repl-history
Original file line number Diff line number Diff line change
1
+ # Simple Checking
2
+
3
+ Finding bugs with Simple Check.
4
+
5
+ https://github.com/reiddraper/simple-check
6
+
7
+ ## Getting started
8
+
9
+ Fork this project.
10
+ * Create a branch with your name.
11
+ * Once happy submit a pull request.
Original file line number Diff line number Diff line change
1
+ (defproject simple-checking " 0.1.0-SNAPSHOT"
2
+ :description " Playing with SimpleCheck"
3
+ :url " http://example.com/FIXME"
4
+ :license {:name " Eclipse Public License"
5
+ :url " http://www.eclipse.org/legal/epl-v10.html" }
6
+ :dependencies [[org.clojure/clojure " 1.5.1" ]
7
+ [reiddraper/simple-check " 0.5.6" ]
8
+ [midje " 1.6.0" ]]
9
+ :profiles {:dev {:plugins [[lein-midje " 3.1.1" ]]}})
Original file line number Diff line number Diff line change
1
+ (ns simple-checking.core )
2
+
3
+ (defn foo
4
+ " I don't do a whole lot."
5
+ [x]
6
+ (println x " Hello, World!" ))
Original file line number Diff line number Diff line change
1
+ (ns simple-checking.t-core
2
+ (:use midje.sweet
3
+ simple-checking.core))
You can’t perform that action at this time.
0 commit comments