-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
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
Use consistent input checking #24
Comments
Actually I quite like the |
I deleted |
Neither package turned out to be useful for my purposes. assertthat has no easy way to make custom error messages, it has to be done in some complicated functional way. ensurer has the same problem, except it's worse. So I rolled my own simple function: |
Right now input checks are chaotically written using a variety of methods. Some use my own functions, others use
assertthat
functions. It's better to reuse well-tested code, so switch toassertthat
functions. Fill in with missing tests.The text was updated successfully, but these errors were encountered: