From 958d7e345c9ad0983d30d44af9d852fe8d2d0bcc Mon Sep 17 00:00:00 2001 From: anatoly Date: Mon, 30 Nov 2015 21:19:58 -0500 Subject: [PATCH] dev.clj: replacing start-without with start --- dev/dev.clj | 9 +++------ test/check/suspend_resume_test.clj | 2 -- 2 files changed, 3 insertions(+), 8 deletions(-) diff --git a/dev/dev.clj b/dev/dev.clj index 4da3e15..e74d05b 100644 --- a/dev/dev.clj +++ b/dev/dev.clj @@ -19,12 +19,9 @@ (defn start [] (with-logging-status) - (mount/start-without #'check.start-with-test/test-conn - #'check.start-with-test/test-nrepl - #'check.parts-test/should-not-start - #'check.suspend-resume-test/randomizer - #'check.suspend-resume-test/web-server - #'check.suspend-resume-test/q-listener)) ;; example on how to start app without certain states + (mount/start #'app.config/app-config + #'app.nyse/conn + #'app/nrepl)) ;; example on how to start app with certain states (defn stop [] (mount/stop)) diff --git a/test/check/suspend_resume_test.clj b/test/check/suspend_resume_test.clj index e5d022f..eb37ace 100644 --- a/test/check/suspend_resume_test.clj +++ b/test/check/suspend_resume_test.clj @@ -139,5 +139,3 @@ (is (= q-listener :q-suspended)) (is (= web-server :w-suspended)) (mount/stop)))) - -(run-tests)