19 lines
493 B
Python
19 lines
493 B
Python
from __future__ import unicode_literals
|
|
|
|
from mayan.apps.common.tests import BaseTestCase
|
|
|
|
from ..statistics import namespace
|
|
|
|
|
|
class DocumentStatisticsTestCase(BaseTestCase):
|
|
def test_namespace(self):
|
|
for statistic in namespace.statistics:
|
|
try:
|
|
statistic.execute()
|
|
except Exception as exception:
|
|
self.fail(
|
|
'Error executing: {}; {}'.format(statistic, exception)
|
|
)
|
|
raise
|
|
|