add tests on iter_unread_messages()
This commit is contained in:
parent
a49dcbab08
commit
5d7e120e79
1 changed files with 5 additions and 1 deletions
|
|
@ -27,6 +27,10 @@ __all__ = ['PhpBBTest']
|
||||||
class PhpBBTest(BackendTest):
|
class PhpBBTest(BackendTest):
|
||||||
BACKEND = 'phpbb'
|
BACKEND = 'phpbb'
|
||||||
|
|
||||||
def test_phpbb(self):
|
def testthreads(self):
|
||||||
for thread in self.backend.iter_threads():
|
for thread in self.backend.iter_threads():
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
def test_unread_messages(self):
|
||||||
|
for message in self.backend.iter_unread_messages():
|
||||||
|
pass
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue