dev.clj: replacing start-without with start

This commit is contained in:
anatoly 2015-11-30 21:19:58 -05:00
parent 325eecf0c9
commit 958d7e345c
2 changed files with 3 additions and 8 deletions

View file

@ -19,12 +19,9 @@
(defn start [] (defn start []
(with-logging-status) (with-logging-status)
(mount/start-without #'check.start-with-test/test-conn (mount/start #'app.config/app-config
#'check.start-with-test/test-nrepl #'app.nyse/conn
#'check.parts-test/should-not-start #'app/nrepl)) ;; example on how to start app with certain states
#'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
(defn stop [] (defn stop []
(mount/stop)) (mount/stop))

View file

@ -139,5 +139,3 @@
(is (= q-listener :q-suspended)) (is (= q-listener :q-suspended))
(is (= web-server :w-suspended)) (is (= web-server :w-suspended))
(mount/stop)))) (mount/stop))))
(run-tests)