Version 0.4.0
UncleBob is a simple django app that allow you writting per-app tests within these paths:
<appname>/tests/unit/test*.py
- for unit tests<appname>/tests/functional/test*.py
- for functional tests<appname>/tests/integration/test*.py
- for integration tests
pip install unclebob
on settings.py
INSTALLED_APPS = (
...
'unclebob',
...
)
TEST_RUNNER = 'unclebob.runners.Nose'
import unclebob
unclebob.take_care_of_my_tests()
just use the regular test command:
python manage.py test
python manage.py test --unit
python manage.py test --functional
python manage.py test --integration
python manage.py test path/to/app/tests
or
python manage.py test path/to/app/tests/unit
if you run only the unit
tests, then unclebob is NOT going to setup
the test database. Since
unit tests are supposed
to be "unwired", what I mean is that unit tests MUST NOT make use of
actual database, filesystem or network at all.
Instead, they must test isolated parts of your code.
For that reason, ma'am/sir, Uncle Bob is gonna break your neck in case you decide to use those, so called, "external resources" in your unit tests.
in your settings.py
UNCLEBOB_NO_DATABASE = True
When unclebob is running tests, it sets the environment variable
UNCLEBOB_RUNNING
to the current working directory.
You can use it, for example, in your codebase fr avoiding logging during the tests.
nose is such a really nice tool for writting tests on python.
Instead of using the unittest framework, which is builtin python thou is less fun to use.
And you know, the most joyable is the writting/running test experience, more developers will write tests for the project. And as much tests, better.
This project was named after Uncle Bob Martin, one of the agile manifesto chaps that brought code cleaness techniques and advices to the rest of us.