forked from liberation/django-elasticsearch
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rework the serializer to allow easy nested serialization,
also give it a dedicated test case, see liberation#15.
- Loading branch information
Showing
14 changed files
with
313 additions
and
141 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,11 @@ | ||
from django_elasticsearch.tests.test_views import EsViewTestCase | ||
from django_elasticsearch.tests.test_qs import EsQuerysetTestCase | ||
from django_elasticsearch.tests.test_indexable import EsIndexableTestCase | ||
from django_elasticsearch.tests.test_serializer import EsJsonSerializerTestCase | ||
from django_elasticsearch.tests.test_restframework import EsRestFrameworkTestCase | ||
|
||
__all__ = ['EsQuerysetTestCase', 'EsViewTestCase', 'EsIndexableTestCase', 'EsRestFrameworkTestCase'] | ||
|
||
__all__ = ['EsQuerysetTestCase', | ||
'EsViewTestCase', | ||
'EsIndexableTestCase', | ||
'EsJsonSerializerTestCase', | ||
'EsRestFrameworkTestCase'] |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.