Initial tests.

This doesn't add much in the way of useful tests but it should pave the way for
more. Tests may be run like so:

{{{
python setup.py nosetests --with-coverage
}}}
This commit is contained in:
Lance Edgar 2013-06-19 14:21:45 -07:00
parent 4174e6d77d
commit 84225f00e1
17 changed files with 250 additions and 90 deletions

View file

@ -94,6 +94,8 @@ setup(
],
install_requires = requires,
tests_require = requires + ['nose', 'coverage'],
test_suite = 'nose.collector',
namespace_packages = ['rattail'],
packages = find_packages(),