Skip to content
Snippets Groups Projects
Commit 8dab022c authored by Allen Gilliland's avatar Allen Gilliland
Browse files

Merge pull request #1 from metabase/dox_and_unit_tests

Add dependencies for dox and unit tests, add first unit test
parents f383e577 8b8b2080
No related branches found
No related tags found
No related merge requests found
......@@ -10,3 +10,4 @@ pom.xml.asc
.hgignore
.hg/
.idea/
/docs
......@@ -12,6 +12,18 @@ FIXME: explanation
$ java -jar metabase-init-0.1.0-standalone.jar [args]
## Documentation
Generate documentation with
lein marg
## Unit Tests
Run unit tests with
lein expectations
## Options
FIXME: listing of options this app accepts.
......
test:
override:
- lein expectations
......@@ -5,6 +5,8 @@
:url "http://www.eclipse.org/legal/epl-v10.html"}
:min-lein-version "2.0.0"
:dependencies [[org.clojure/clojure "1.6.0"]
[expectations "2.0.12"] ; unit tests
[marginalia "0.7.1"] ; for documentation
[environ "0.5.0"] ; easy environment management
[org.clojure/tools.logging "0.3.1"] ; logging framework
[log4j/log4j "1.2.17" :exclusions [javax.mail/mail
......@@ -13,9 +15,11 @@
com.sun.jmx/jmxri]]
[korma "0.4.0"] ; SQL lib
]
:plugins [[lein-environ "0.5.0"]
[lein-midje "3.1.3"]
[cider/cider-nrepl "0.8.2"] ; for development w/ Emacs
:plugins [[cider/cider-nrepl "0.8.2"] ; Interactive development w/ cider NREPL in Emacs
[lein-environ "0.5.0"] ; easy access to environment variables
[lein-expectations "0.0.7"] ; run unit tests with 'lein expectations'
[lein-midje "3.1.3"] ; another unit testing option
[lein-marginalia "0.7.0"] ; generate documentation with 'lein marg'
]
:main ^:skip-aot metabase.core
:target-path "target/%s"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment