* Moved tests out of the app, and integrated them with setup.py v0.4.0.alpha2
authorBradley Ayers <bradley.ayers@enigmainteractive.com>
Thu, 24 Mar 2011 03:13:12 +0000 (13:13 +1000)
committerBradley Ayers <bradley.ayers@enigmainteractive.com>
Thu, 24 Mar 2011 03:13:12 +0000 (13:13 +1000)
commitb613d744955ccb3fc13735adf2e3a738be05bf0e
treedccf3763ebe8dbfe62692938a6fee3666e5f3de4
parent4b18960c5bd3beec7cc3bf4b82147f8bb5329329
* Moved tests out of the app, and integrated them with setup.py
* Added more tests for QuerySet data sources
* Clarified documentation
* Renamed BoundRow.data to BoundRow.record
* Fixed bug in conf.py, where it was trying to use the old VERSION variable in django_tables.
* Updated the documentation to clarify the use-cases for column formatters.
* Simplified setup.py
* Using QuerySets actually works now, added a relevant test that now uses django-attest
18 files changed:
.gitignore
MANIFEST.in [new file with mode: 0644]
django_tables/__init__.py
django_tables/rows.py
django_tables/tables.py
django_tables/templatetags/django_tables.py
django_tables/tests/__init__.py [deleted file]
django_tables/tests/memory.py [deleted file]
django_tables/tests/models.py [deleted file]
django_tables/tests/testapp/__init__.py [deleted file]
django_tables/tests/testapp/models.py [deleted file]
docs/conf.py
docs/index.rst
setup.py
tests/__init__.py [new file with mode: 0644]
tests/core.py [moved from django_tables/tests/core.py with 99% similarity]
tests/models.py [new file with mode: 0644]
tests/templates.py [moved from django_tables/tests/templates.py with 100% similarity]