mirror of https://github.com/status-im/timbre.git
Clean up project.clj, add Clojure 1.6 test
This commit is contained in:
parent
25cc163c34
commit
05ff38c7b4
23
project.clj
23
project.clj
|
@ -5,12 +5,27 @@
|
|||
:url "http://www.eclipse.org/legal/epl-v10.html"}
|
||||
:dependencies [[org.clojure/clojure "1.4.0"]
|
||||
[org.clojure/tools.macro "0.1.2"]
|
||||
[clj-stacktrace "0.2.5"]]
|
||||
[clj-stacktrace "0.2.5"]
|
||||
[expectations "1.4.43"]]
|
||||
:profiles {:1.4 {:dependencies [[org.clojure/clojure "1.4.0"]]}
|
||||
:1.5 {:dependencies [[org.clojure/clojure "1.5.1"]]}
|
||||
:1.6 {:dependencies [[org.clojure/clojure "1.6.0-master-SNAPSHOT"]]}
|
||||
:dev {:dependencies []}
|
||||
:test {:dependencies []}}
|
||||
:aliases {"test-all" ["with-profile" "test,1.4:test,1.5" "test"]}
|
||||
:plugins [[codox "0.6.4"]]
|
||||
:aliases {"test-all" ["with-profile" "test,1.4:test,1.5:test,1.6" "expectations"]
|
||||
"test-auto" ["with-profile" "test" "autoexpect"]
|
||||
"start-dev" ["with-profile" "dev,test,bench" "repl" ":headless"]}
|
||||
:plugins [[lein-expectations "0.0.7"]
|
||||
[lein-autoexpect "0.2.5"]
|
||||
[codox "0.6.4"]]
|
||||
:min-lein-version "2.0.0"
|
||||
:warn-on-reflection true)
|
||||
:warn-on-reflection true
|
||||
:repositories
|
||||
{"sonatype"
|
||||
{:url "http://oss.sonatype.org/content/repositories/releases"
|
||||
:snapshots false
|
||||
:releases {:checksum :fail}}
|
||||
"sonatype-snapshots"
|
||||
{:url "http://oss.sonatype.org/content/repositories/snapshots"
|
||||
:snapshots true
|
||||
:releases {:checksum :fail :update :always}}})
|
|
@ -0,0 +1,7 @@
|
|||
(ns taoensso.timbre.tests.main
|
||||
(:require [expectations :as test :refer :all]
|
||||
[taoensso.timbre :as timbre :refer (trace debug info warn
|
||||
error fatal spy)]
|
||||
[taoensso.timbre.profiling :as profiling :refer (p profile)]))
|
||||
|
||||
(expect true) ; TODO Add tests (PRs welcome!)
|
|
@ -1,6 +0,0 @@
|
|||
(ns test-timbre.main
|
||||
(:use [clojure.test]
|
||||
[taoensso.timbre :as timbre :only (info)]
|
||||
[taoensso.timbre.profiling :as profiling :only (p profile)]))
|
||||
|
||||
(deftest test-nothing) ; TODO
|
Loading…
Reference in New Issue