summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStuart Halloway <stu@thinkrelevance.com>2009-06-24 00:35:15 -0400
committerStuart Halloway <stu@thinkrelevance.com>2009-06-24 00:35:15 -0400
commit62e0e4f6ee1e74f90c0c11c02bc88b950067a36d (patch)
treef2e49f5c0129299fae6c6b6be693bbbdddeee0b3
parent30ef397b0c3cac1a62f70fe84315b7f0e2505b89 (diff)
gtic: tests now passing (broke dep on java-utils)
-rw-r--r--test/clojure/contrib/test_clojure.clj1
-rw-r--r--test/clojure/contrib/test_clojure/clojure_main.clj18
2 files changed, 0 insertions, 19 deletions
diff --git a/test/clojure/contrib/test_clojure.clj b/test/clojure/contrib/test_clojure.clj
index 280c6a96..b524becc 100644
--- a/test/clojure/contrib/test_clojure.clj
+++ b/test/clojure/contrib/test_clojure.clj
@@ -42,7 +42,6 @@
:parallel
:java-interop
;; libraries
- :clojure-main
:clojure-set
:clojure-xml
:clojure-zip
diff --git a/test/clojure/contrib/test_clojure/clojure_main.clj b/test/clojure/contrib/test_clojure/clojure_main.clj
deleted file mode 100644
index f1a96465..00000000
--- a/test/clojure/contrib/test_clojure/clojure_main.clj
+++ /dev/null
@@ -1,18 +0,0 @@
-;; Copyright (c) Shawn Hoover. All rights reserved. The use and
-;; distribution terms for this software are covered by the Eclipse Public
-;; License 1.0 (http://opensource.org/licenses/eclipse-1.0.php) which can
-;; be found in the file epl-v10.html at the root of this distribution. By
-;; using this software in any fashion, you are agreeing to be bound by the
-;; terms of this license. You must not remove this notice, or any other,
-;; from this software.
-
-(ns clojure.contrib.test-clojure.clojure-main
- (:use [clojure.contrib.java-utils :only (with-system-properties)]
- clojure.contrib.test-is)
- (:require [clojure.main :as main]))
-
-(deftest compile-path-respects-java-property
- ;; Bug fixed in r1177; previously was hardwired to the compile-time path.
- (with-system-properties {:clojure.compile.path "compile path test"}
- (main/with-bindings
- (is (= "compile path test" *compile-path*)))))