remove defunct test
This commit is contained in:
parent
55bf32435b
commit
a85cc1616f
1 changed files with 0 additions and 19 deletions
|
@ -35,25 +35,6 @@ class BlogIndexingTests(BaseTest):
|
|||
self.assertEqual(post.get_absolute_url(), indexed['url'])
|
||||
self.assertEqual(post.date_published, indexed['pub_date'])
|
||||
|
||||
def test_blog_post_is_indexed_using_update_object(self):
|
||||
"""This tests the indexing path way used by the RealTimeSignalProcessor"""
|
||||
post = self._get_post(self._post_data[0]['en'])
|
||||
post = self._get_post(self._post_data[0]['it'], post, 'it')
|
||||
post.tags.add('a tag')
|
||||
add_plugin(post.content, 'TextPlugin', language='en', body='test body')
|
||||
|
||||
index = self.get_post_index()
|
||||
index.update_object(post, using=DEFAULT_ALIAS)
|
||||
index = self.get_post_index()
|
||||
indexed = index.prepared_data
|
||||
|
||||
self.assertEqual(post.get_title(), indexed['title'])
|
||||
self.assertEqual(post.get_description(), indexed['description'])
|
||||
self.assertEqual(post.get_tags(), indexed['tags'])
|
||||
self.assertEqual(self.sample_text, indexed['text'])
|
||||
self.assertEqual(post.get_absolute_url(), indexed['url'])
|
||||
self.assertEqual(post.date_published, indexed['pub_date'])
|
||||
|
||||
def test_searchqueryset(self):
|
||||
posts = self.get_posts()
|
||||
all_results = SearchQuerySet().models(Post)
|
||||
|
|
Loading…
Reference in a new issue