diff --git a/.travis.yml b/.travis.yml index 50c0c690..455f3c0e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,3 +5,4 @@ jdk: - openjdk7 notifications: email: false + webhooks: http://polar-hollows-8825.herokuapp.com/notifications diff --git a/project.clj b/project.clj index bcb1c93e..65620eb3 100644 --- a/project.clj +++ b/project.clj @@ -1,6 +1,4 @@ (defproject training-day "1.0.0-SNAPSHOT" :dependencies [[org.clojure/clojure "1.5.1"] - [midje-grader "0.1.0-SNAPSHOT"]] - :profiles {:dev - {:dependencies [[midje "1.5.1"]] - :plugins [[lein-midje "3.1.1"]]}}) + [iloveponies.tests/training-day "0.1.0-SNAPSHOT"]] + :profiles {:dev {:plugins [[lein-midje "3.1.1"]]}}) diff --git a/test/training_day_test.clj b/test/training_day_test.clj index 539cfce0..68111252 100644 --- a/test/training_day_test.clj +++ b/test/training_day_test.clj @@ -1,17 +1,2 @@ (ns training-day-test - (:use training-day - midje.sweet)) - -(facts "answer" {:exercise 5 - :points 1} - answer => 42) - -(facts "square" {:exercise 6 - :points 1} - (square 2) => 4 - (square 3) => 9) - -(facts "average" {:exercise 7 - :points 1} - (average 2 4) => 3 - (average 1 2) => 3/2) + (:use iloveponies.tests.training-day))