Refactor tests and add a lot of skeleton tests we really ought to have
svn path=/plone.app.discussion/trunk/; revision=27012
This commit is contained in:
@@ -0,0 +1,42 @@
|
||||
import unittest
|
||||
|
||||
from Products.PloneTestCase.ptc import PloneTestCase
|
||||
from plone.app.discussion.tests.layer import DiscussionLayer
|
||||
|
||||
class TestIndexers(PloneTestCase):
|
||||
|
||||
layer = DiscussionLayer
|
||||
|
||||
def test_title(self):
|
||||
pass
|
||||
|
||||
def test_description(self):
|
||||
pass
|
||||
|
||||
def test_dates(self):
|
||||
# created, modified, effective etc
|
||||
pass
|
||||
|
||||
def test_searchable_text(self):
|
||||
pass
|
||||
|
||||
def test_creator(self):
|
||||
pass
|
||||
|
||||
def test_title(self):
|
||||
pass
|
||||
|
||||
def test_in_reply_to(self):
|
||||
pass
|
||||
|
||||
def test_path(self):
|
||||
pass
|
||||
|
||||
def test_review_state(self):
|
||||
pass
|
||||
|
||||
def test_object_provides(self):
|
||||
pass
|
||||
|
||||
def test_suite():
|
||||
return unittest.defaultTestLoader.loadTestsFromName(__name__)
|
||||
Reference in New Issue
Block a user