Skip to content

Instantly share code, notes, and snippets.

@przemeq84
Created February 27, 2015 17:13
Show Gist options
  • Save przemeq84/b2b6fbbbd44fa28014f3 to your computer and use it in GitHub Desktop.
Save przemeq84/b2b6fbbbd44fa28014f3 to your computer and use it in GitHub Desktop.
(defproject junit-test "1.0.0-SNAPSHOT"
:description "Test for speclj-junit"
:dependencies [[org.clojure/clojure "1.5.1"]
[speclj-junit "0.0.9"]
[speclj "2.7.2"]]
:profiles {:uberjar {:aot :all}}
:plugins [[speclj "2.7.2"]])
(ns spec
(:require [speclj.core :refer :all]))
(describe "test"
(it "fails"
(should= true false)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment