Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
weavejester committed Dec 3, 2016
0 parents commit 5ca894d
Show file tree
Hide file tree
Showing 5 changed files with 44 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .gitignore
@@ -0,0 +1,11 @@
/target
/classes
/checkouts
pom.xml
pom.xml.asc
*.jar
*.class
/.lein-*
/.nrepl-port
.hgignore
.hg/
14 changes: 14 additions & 0 deletions README.md
@@ -0,0 +1,14 @@
# integrant

A Clojure library designed to ... well, that part is up to you.

## Usage

FIXME

## License

Copyright © 2016 FIXME

Distributed under the Eclipse Public License either version 1.0 or (at
your option) any later version.
6 changes: 6 additions & 0 deletions project.clj
@@ -0,0 +1,6 @@
(defproject integrant "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.7.0"]])
6 changes: 6 additions & 0 deletions src/integrant/core.clj
@@ -0,0 +1,6 @@
(ns integrant.core)

(defn foo
"I don't do a whole lot."
[x]
(println x "Hello, World!"))
7 changes: 7 additions & 0 deletions test/integrant/core_test.clj
@@ -0,0 +1,7 @@
(ns integrant.core-test
(:require [clojure.test :refer :all]
[integrant.core :refer :all]))

(deftest a-test
(testing "FIXME, I fail."
(is (= 0 1))))

0 comments on commit 5ca894d

Please sign in to comment.