From 8afe0e351624821f614b15b8842e1f968c7b31fa Mon Sep 17 00:00:00 2001 From: SherSpock Date: Thu, 18 Jul 2019 07:32:28 -0400 Subject: [PATCH] Remove duplicated test project explanation info from test projects Justification: 1) There is already an explanatory README present in the root directory of test_projects 2) About half of the test projects have this duplicated information. The other half do not, adding inconsistency to duplication. --- .../data-readers-backwards-compatibility/project.clj | 5 ----- test_projects/jvm-opts/project.clj | 5 ----- test_projects/sample-failing/project.clj | 5 ----- test_projects/sample-fixture-error/project.clj | 5 ----- test_projects/sample-no-aot/project.clj | 5 ----- test_projects/sample-profile-meta/project.clj | 5 ----- test_projects/sample-reader-cond/project.clj | 5 ----- test_projects/sample/project.clj | 5 ----- test_projects/uberjar-merging/project.clj | 5 ----- test_projects/with-aliases/project.clj | 5 ----- test_projects/with-aliases2/project.clj | 5 ----- test_projects/with-resources/project.clj | 5 ----- 12 files changed, 60 deletions(-) diff --git a/test_projects/data-readers-backwards-compatibility/project.clj b/test_projects/data-readers-backwards-compatibility/project.clj index 3962ced89..5ff7fe250 100644 --- a/test_projects/data-readers-backwards-compatibility/project.clj +++ b/test_projects/data-readers-backwards-compatibility/project.clj @@ -1,8 +1,3 @@ -;; This project is used for leiningen's test suite, so don't change -;; any of these values without updating the relevant tests. If you -;; just want a basic project to work from, generate a new one with -;; "lein new". - (defproject bug "bug" :dependencies [[org.clojure/clojure "1.8.0"] [org.flatland/ordered "1.5.6"]]) diff --git a/test_projects/jvm-opts/project.clj b/test_projects/jvm-opts/project.clj index 9f35716d7..47772b0a2 100644 --- a/test_projects/jvm-opts/project.clj +++ b/test_projects/jvm-opts/project.clj @@ -1,8 +1,3 @@ -;; This project is used for leiningen's test suite, so don't change -;; any of these values without updating the relevant tests. If you -;; just want a basic project to work from, generate a new one with -;; "lein new". - (defproject custom/args "0.0.1-SNAPSHOT" :description "A test project" :dependencies [[org.clojure/clojure "1.8.0"]] diff --git a/test_projects/sample-failing/project.clj b/test_projects/sample-failing/project.clj index 692ba3c4e..3dfcf3abc 100644 --- a/test_projects/sample-failing/project.clj +++ b/test_projects/sample-failing/project.clj @@ -1,8 +1,3 @@ -;; This project is used for leiningen's test suite, so don't change -;; any of these values without updating the relevant tests. If you -;; just want a basic project to work from, generate a new one with -;; "lein new". - (defproject nomnomnom "0.5.0-SNAPSHOT" :dependencies [[~(symbol "org.clojure" "clojure") ~"1.2.0"]] :aot [nom.nom.nom]) diff --git a/test_projects/sample-fixture-error/project.clj b/test_projects/sample-fixture-error/project.clj index 4dfc2e513..07c4f4bb8 100644 --- a/test_projects/sample-fixture-error/project.clj +++ b/test_projects/sample-fixture-error/project.clj @@ -1,7 +1,2 @@ -;; This project is used for leiningen's test suite, so don't change -;; any of these values without updating the relevant tests. If you -;; just want a basic project to work from, generate a new one with -;; "lein new". - (defproject sample-fixture-error "0.1.0-SNAPSHOT" :dependencies [[org.clojure/clojure "1.8.0"]]) diff --git a/test_projects/sample-no-aot/project.clj b/test_projects/sample-no-aot/project.clj index 461e8718d..8ddfb6217 100644 --- a/test_projects/sample-no-aot/project.clj +++ b/test_projects/sample-no-aot/project.clj @@ -1,8 +1,3 @@ -;; This project is used for leiningen's test suite, so don't change -;; any of these values without updating the relevant tests. If you -;; just want a basic project to work from, generate a new one with -;; "lein new". - (defproject nomnomnom "0.5.0-SNAPSHOT" :dependencies [[org.clojure/clojure "1.3.0"] [janino "2.5.15"]] diff --git a/test_projects/sample-profile-meta/project.clj b/test_projects/sample-profile-meta/project.clj index eac0e4241..dc94985f4 100644 --- a/test_projects/sample-profile-meta/project.clj +++ b/test_projects/sample-profile-meta/project.clj @@ -1,8 +1,3 @@ -;; This project is used for leiningen's test suite, so don't change -;; any of these values without updating the relevant tests. If you -;; just want a basic project to work from, generate a new one with -;; "lein new". - (defproject nomnomnom "0.5.0-SNAPSHOT" :dependencies [] :profiles {:default [:leiningen/default :my-leaky :my-provided :my-test] diff --git a/test_projects/sample-reader-cond/project.clj b/test_projects/sample-reader-cond/project.clj index 8f6b04067..da2a55fd7 100644 --- a/test_projects/sample-reader-cond/project.clj +++ b/test_projects/sample-reader-cond/project.clj @@ -1,8 +1,3 @@ -;; This project is used for leiningen's test suite, so don't change -;; any of these values without updating the relevant tests. If you -;; just want a basic project to work from, generate a new one with -;; "lein new". - (defproject nomnomnom "0.5.0-SNAPSHOT" :dependencies [[org.clojure/clojure "1.8.0"] [janino "2.5.15"]] diff --git a/test_projects/sample/project.clj b/test_projects/sample/project.clj index a39322c3b..35af4f15e 100644 --- a/test_projects/sample/project.clj +++ b/test_projects/sample/project.clj @@ -1,8 +1,3 @@ -;; This project is used for leiningen's test suite, so don't change -;; any of these values without updating the relevant tests. If you -;; just want a basic project to work from, generate a new one with -;; "lein new". - (def clj-version "1.3.0") (defproject nomnomnom "0.5.0-SNAPSHOT" diff --git a/test_projects/uberjar-merging/project.clj b/test_projects/uberjar-merging/project.clj index ef009494c..b47656af8 100644 --- a/test_projects/uberjar-merging/project.clj +++ b/test_projects/uberjar-merging/project.clj @@ -1,8 +1,3 @@ -;; This project is used for leiningen's test suite, so don't change -;; any of these values without updating the relevant tests. If you -;; just want a basic project to work from, generate a new one with -;; "lein new". - (defproject nomnomnom "0.5.0-SNAPSHOT" :dependencies [[org.clojure/clojure "1.8.0"] [janino "2.5.15"] diff --git a/test_projects/with-aliases/project.clj b/test_projects/with-aliases/project.clj index c597ce7f1..5e5644d06 100644 --- a/test_projects/with-aliases/project.clj +++ b/test_projects/with-aliases/project.clj @@ -1,8 +1,3 @@ -;; This project is used for leiningen's test suite, so don't change -;; any of these values without updating the relevant tests. If you -;; just want a basic project to work from, generate a new one with -;; "lein new". - (defproject project-with-aliases "0.1.0-SNAPSHOT" :aliases {"p" ["echo" "p"] "a2p" ["with-profile" "+a2" "p"] diff --git a/test_projects/with-aliases2/project.clj b/test_projects/with-aliases2/project.clj index 60c451d1f..5fd3bd6c6 100644 --- a/test_projects/with-aliases2/project.clj +++ b/test_projects/with-aliases2/project.clj @@ -1,8 +1,3 @@ -;; This project is used for leiningen's test suite, so don't change -;; any of these values without updating the relevant tests. If you -;; just want a basic project to work from, generate a new one with -;; "lein new". - (defproject project-with-aliases "0.1.0-SNAPSHOT" :a 1 :profiles {:a2 {:a 2}}) diff --git a/test_projects/with-resources/project.clj b/test_projects/with-resources/project.clj index 26db3c30e..e5f01f4b4 100644 --- a/test_projects/with-resources/project.clj +++ b/test_projects/with-resources/project.clj @@ -1,8 +1,3 @@ -;; This project is used for leiningen's test suite, so don't change -;; any of these values without updating the relevant tests. If you -;; just want a basic project to work from, generate a new one with -;; "lein new". - (defproject project-with-resources "0.5.0-SNAPSHOT" :dependencies [[org.clojure/clojure "1.3.0"] [janino "2.5.15"]]