We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The docstring for cpr:
cpr
cpr :Require|RunTests
This essentially means that it does:
(require 'my-test-ns :reload) (clojure.test/run-tests 'my-test-ns)
There's been a request to replicate this kind of functionality.
Benefits:
Cons:
CIDER: Doesn't do it
(require :reload)
This reloads only the current namespace.
deftest
halt!
cpp
(reset)
cpaF
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Request
The docstring for
cpr
:cpr :Require|RunTests
This essentially means that it does:
(require 'my-test-ns :reload) (clojure.test/run-tests 'my-test-ns)
There's been a request to replicate this kind of functionality.
Evaluation
Benefits:
Cons:
Prior art
CIDER: Doesn't do it
Approaches
(require :reload)
This reloads only the current namespace.
Issues
deftest
(and other things) will hang aroundBenefits
deftest
, only updates the minimum necessarySimple refresh first
Issues
halt!
multi-methodcpp
d, thrown in for quick testBenefits
Full refresh (including
(reset)
)Issues
(reset)
scpp
d, thrown in for quick testBenefits
Do nothing
Benefits
Issues
cpaF
?)The text was updated successfully, but these errors were encountered: