From 1cef468bcd84a13c4e242248630827a54204d8be Mon Sep 17 00:00:00 2001 From: Joe Gallo Date: Sun, 6 Mar 2011 09:41:47 -0500 Subject: [PATCH] Move test namespaces to leiningen.test.* --- test/{test_compile.clj => leiningen/test/compile.clj} | 2 +- test/{test_core.clj => leiningen/test/core.clj} | 2 +- test/{test_deploy.clj => leiningen/test/deploy.clj} | 2 +- test/{test_deps.clj => leiningen/test/deps.clj} | 2 +- test/{test_help.clj => leiningen/test/help.clj} | 2 +- test/{test_install.clj => leiningen/test/install.clj} | 2 +- test/{test_jar.clj => leiningen/test/jar.clj} | 2 +- test/{test_javac.clj => leiningen/test/javac.clj} | 2 +- test/{test_new.clj => leiningen/test/new.clj} | 2 +- test/{test_plugin.clj => leiningen/test/plugin.clj} | 2 +- test/{test_pom.clj => leiningen/test/pom.clj} | 2 +- test/{test_run.clj => leiningen/test/run.clj} | 2 +- test/{test_test.clj => leiningen/test/test.clj} | 2 +- test/{test_uberjar.clj => leiningen/test/uberjar.clj} | 2 +- 14 files changed, 14 insertions(+), 14 deletions(-) rename test/{test_compile.clj => leiningen/test/compile.clj} (99%) rename test/{test_core.clj => leiningen/test/core.clj} (98%) rename test/{test_deploy.clj => leiningen/test/deploy.clj} (96%) rename test/{test_deps.clj => leiningen/test/deps.clj} (97%) rename test/{test_help.clj => leiningen/test/help.clj} (98%) rename test/{test_install.clj => leiningen/test/install.clj} (98%) rename test/{test_jar.clj => leiningen/test/jar.clj} (99%) rename test/{test_javac.clj => leiningen/test/javac.clj} (95%) rename test/{test_new.clj => leiningen/test/new.clj} (94%) rename test/{test_plugin.clj => leiningen/test/plugin.clj} (98%) rename test/{test_pom.clj => leiningen/test/pom.clj} (97%) rename test/{test_run.clj => leiningen/test/run.clj} (98%) rename test/{test_test.clj => leiningen/test/test.clj} (98%) rename test/{test_uberjar.clj => leiningen/test/uberjar.clj} (96%) diff --git a/test/test_compile.clj b/test/leiningen/test/compile.clj similarity index 99% rename from test/test_compile.clj rename to test/leiningen/test/compile.clj index 8187a2f3..31b11075 100644 --- a/test/test_compile.clj +++ b/test/leiningen/test/compile.clj @@ -1,4 +1,4 @@ -(ns test-compile +(ns leiningen.test.compile (:refer-clojure :exclude [compile]) (:use [leiningen.compile] :reload) (:use [clojure.test] diff --git a/test/test_core.clj b/test/leiningen/test/core.clj similarity index 98% rename from test/test_core.clj rename to test/leiningen/test/core.clj index 88b565e6..40a56d97 100644 --- a/test/test_core.clj +++ b/test/leiningen/test/core.clj @@ -1,4 +1,4 @@ -(ns test-core +(ns leiningen.test.core (:use [leiningen.core] :reload-all) (:use [clojure.test])) diff --git a/test/test_deploy.clj b/test/leiningen/test/deploy.clj similarity index 96% rename from test/test_deploy.clj rename to test/leiningen/test/deploy.clj index 9bf3f397..37db9a42 100644 --- a/test/test_deploy.clj +++ b/test/leiningen/test/deploy.clj @@ -1,4 +1,4 @@ -(ns test-deploy +(ns leiningen.test.deploy (:use [leiningen.deploy] :reload) (:use [clojure.test] [clojure.java.io :only [file]] diff --git a/test/test_deps.clj b/test/leiningen/test/deps.clj similarity index 97% rename from test/test_deps.clj rename to test/leiningen/test/deps.clj index 0dd9f079..3465ebb8 100644 --- a/test/test_deps.clj +++ b/test/leiningen/test/deps.clj @@ -1,4 +1,4 @@ -(ns test-deps +(ns leiningen.test.deps (:use [leiningen.core :only [read-project defproject]] [leiningen.deps :only [deps]] :reload-all) (:use [clojure.test] diff --git a/test/test_help.clj b/test/leiningen/test/help.clj similarity index 98% rename from test/test_help.clj rename to test/leiningen/test/help.clj index 6f1219ad..56d3c889 100644 --- a/test/test_help.clj +++ b/test/leiningen/test/help.clj @@ -1,4 +1,4 @@ -(ns test-help +(ns leiningen.test.help (:use [leiningen.help] [clojure.test])) diff --git a/test/test_install.clj b/test/leiningen/test/install.clj similarity index 98% rename from test/test_install.clj rename to test/leiningen/test/install.clj index 2be2f847..10f8a93d 100644 --- a/test/test_install.clj +++ b/test/leiningen/test/install.clj @@ -1,4 +1,4 @@ -(ns test-install +(ns leiningen.test.install (:use [leiningen.core :only [read-project defproject home-dir]] [leiningen.compile :only [get-os]] [leiningen.install] :reload) diff --git a/test/test_jar.clj b/test/leiningen/test/jar.clj similarity index 99% rename from test/test_jar.clj rename to test/leiningen/test/jar.clj index 6221d79a..c49c9ac2 100644 --- a/test/test_jar.clj +++ b/test/leiningen/test/jar.clj @@ -1,4 +1,4 @@ -(ns test-jar +(ns leiningen.test.jar (:use [clojure.test] [leiningen.core :only [defproject read-project]] [leiningen.jar] diff --git a/test/test_javac.clj b/test/leiningen/test/javac.clj similarity index 95% rename from test/test_javac.clj rename to test/leiningen/test/javac.clj index f39683cd..c14151a2 100644 --- a/test/test_javac.clj +++ b/test/leiningen/test/javac.clj @@ -1,4 +1,4 @@ -(ns test-javac +(ns leiningen.test.javac (:use [clojure.test] [clojure.java.io :only [file]] [leiningen.javac :only [javac]] diff --git a/test/test_new.clj b/test/leiningen/test/new.clj similarity index 94% rename from test/test_new.clj rename to test/leiningen/test/new.clj index a5a4f875..38d6f989 100644 --- a/test/test_new.clj +++ b/test/leiningen/test/new.clj @@ -1,4 +1,4 @@ -(ns test-new +(ns leiningen.test.new (:require [leiningen.new] :reload) (:use [clojure.test] [clojure.java.io :only [file]] diff --git a/test/test_plugin.clj b/test/leiningen/test/plugin.clj similarity index 98% rename from test/test_plugin.clj rename to test/leiningen/test/plugin.clj index 5cb63b45..33e50ace 100644 --- a/test/test_plugin.clj +++ b/test/leiningen/test/plugin.clj @@ -1,4 +1,4 @@ -(ns test-plugin +(ns leiningen.test.plugin (:use [leiningen.plugin] [leiningen.util.file :only (unique-lein-tmp-dir delete-file-recursively)] diff --git a/test/test_pom.clj b/test/leiningen/test/pom.clj similarity index 97% rename from test/test_pom.clj rename to test/leiningen/test/pom.clj index 11598c65..e7211629 100644 --- a/test/test_pom.clj +++ b/test/leiningen/test/pom.clj @@ -1,4 +1,4 @@ -(ns test-pom +(ns leiningen.test.pom (:use [leiningen.core :only [read-project defproject]] [leiningen.util.maven :only [make-model]] [leiningen.pom :only [pom]]) diff --git a/test/test_run.clj b/test/leiningen/test/run.clj similarity index 98% rename from test/test_run.clj rename to test/leiningen/test/run.clj index f0b46329..eeae9a8e 100644 --- a/test/test_run.clj +++ b/test/leiningen/test/run.clj @@ -1,4 +1,4 @@ -(ns test-run +(ns leiningen.test.run (:use [clojure.test] [clojure.java.io :only [delete-file]] [leiningen.core :only [read-project]] diff --git a/test/test_test.clj b/test/leiningen/test/test.clj similarity index 98% rename from test/test_test.clj rename to test/leiningen/test/test.clj index 796aadba..98baea2e 100644 --- a/test/test_test.clj +++ b/test/leiningen/test/test.clj @@ -1,4 +1,4 @@ -(ns test-test +(ns leiningen.test.test (:refer-clojure :exclude [test]) (:use [leiningen.test] [leiningen.util.file :only [tmp-dir]] diff --git a/test/test_uberjar.clj b/test/leiningen/test/uberjar.clj similarity index 96% rename from test/test_uberjar.clj rename to test/leiningen/test/uberjar.clj index 777bdab0..a726fb9a 100644 --- a/test/test_uberjar.clj +++ b/test/leiningen/test/uberjar.clj @@ -1,4 +1,4 @@ -(ns test-uberjar +(ns leiningen.test.uberjar (:use [leiningen.uberjar] :reload) (:use [clojure.test] [leiningen.jar :only [get-jar-filename get-default-uberjar-name jar]]