Skip to content

Commit 86df7be

Browse files
committed
Skeleton
0 parents  commit 86df7be

File tree

5 files changed

+41
-0
lines changed

5 files changed

+41
-0
lines changed

.gitignore

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
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

README.md

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
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.

project.clj

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
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"]]}})

src/simple_checking/core.clj

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
(ns simple-checking.core)
2+
3+
(defn foo
4+
"I don't do a whole lot."
5+
[x]
6+
(println x "Hello, World!"))

test/simple_checking/t_core.clj

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
(ns simple-checking.t-core
2+
(:use midje.sweet
3+
simple-checking.core))

0 commit comments

Comments
 (0)