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 []
(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))

View file

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