duct-framework / duct

Server-side application framework for Clojure
MIT License
1.13k stars 51 forks source link

REPL test command does not reload namespaces #58

Closed zerg000000 closed 7 years ago

zerg000000 commented 7 years ago

The Duct repl provides (test) command for running tests. The source code under src/, test/ does not reload, I need to manually reload them in repl. Is it the expected behaviour? What would be the idiom of reload source code?

weavejester commented 7 years ago

(reset) should reload. There's also (refresh).

zerg000000 commented 7 years ago

Thanks, James!