Skip to content

Commit

Permalink
Clojure starting point added
Browse files Browse the repository at this point in the history
  • Loading branch information
gam committed Dec 3, 2011
1 parent 1990743 commit 7a1534a
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 0 deletions.
8 changes: 8 additions & 0 deletions clojure/conway/.gitignore
@@ -0,0 +1,8 @@
/pom.xml
*jar
/lib
/classes
/native
/.lein-failures
/checkouts
/.lein-deps-sum
7 changes: 7 additions & 0 deletions clojure/conway/project.clj
@@ -0,0 +1,7 @@
(defproject conway "1.0-SNAPSHOT"
:description "Conway's Game of Life"
:dependencies [[org.clojure/clojure "1.3.0"]
[com.stuartsierra/lazytest "2.0.0-SNAPSHOT"]
[midje "1.3-alpha5"]]
:repositories {"stuartsierra-releases" "http://stuartsierra.com/maven2"
"stuartsierra-snapshots" "http://stuartsierra.com/m2snapshots"})
6 changes: 6 additions & 0 deletions clojure/conway/src/conway/core.clj
@@ -0,0 +1,6 @@
(ns conway.core
(:use midje.sweet))


(fact
(str "foo" "bar") => "fubar")
6 changes: 6 additions & 0 deletions clojure/conway/test/conway/test/core.clj
@@ -0,0 +1,6 @@
(ns conway.test.core
(:use [conway.core])
(:use [lazytest.deftest]))

(deftest replace-me
(is false "No tests have been written."))

0 comments on commit 7a1534a

Please sign in to comment.