I have heard of acceptance tests for websites but can I / should I go beyond unit tests? Have you ever done anything like this I'd love to know your thoughts.
For further actions, you may consider blocking this person and/or reporting abuse
I have heard of acceptance tests for websites but can I / should I go beyond unit tests? Have you ever done anything like this I'd love to know your thoughts.
For further actions, you may consider blocking this person and/or reporting abuse
Jackson Kasi -
Thomas Hansen -
B. Burt -
Eixi -
Once suspended, adam_cyclones will not be able to comment or publish posts until their suspension is removed.
Once unsuspended, adam_cyclones will be able to comment and publish posts again.
Once unpublished, all posts by adam_cyclones will become hidden and only accessible to themselves.
If adam_cyclones is not suspended, they can still re-publish their posts from their dashboard.
Once unpublished, this post will become invisible to the public and only accessible to Adam Crockett.
They can still re-publish the post if they are not suspended.
Thanks for keeping DEV Community safe. Here is what you can do to flag adam_cyclones:
Unflagging adam_cyclones will restore default visibility to their posts.
Top comments (2)
I think almost all non-trivial production-ready apps should have automated testing of some kind, and that includes CLI apps. Altough not as heard of as in web development, CLI apps can also be tested. One example is the Git project, which won't accept new contributions if the developer doesn't implement unit tests for that new feature/fix.
You can find more info about the Git project testing approach at github.com/git/git/blob/master/Doc... (line 542).
github.com/cucumber/aruba