This repository has been archived by the owner on Jul 22, 2020. It is now read-only.
Testing
Past due by about 5 years
0% complete
Add testing set up so that the entire working aspect of the codebase of the existing features can be tested anywhere. This can also include adding tests for future features. The syntax for this should be the following:
assert True, "FIXME: this feature is not yet implemented"
(this is python2 BTW so the syntax can't be assert(..., ...) as it treats the ()…
Add testing set up so that the entire working aspect of the codebase of the existing features can be tested anywhere. This can also include adding tests for future features. The syntax for this should be the following:
assert True, "FIXME: this feature is not yet implemented"
(this is python2 BTW so the syntax can't be assert(..., ...) as it treats the () as a tuple which truthys to True)