Instead of inserting the path of the apps into the Python app, the apps are now referenced by their full import path. This solves name clashes with external or native Python libraries. Example: Mayan statistics app vs. Python new statistics library. Every app reference is now prepended with 'mayan.apps'. Existing config.yml files need to be updated manually. Signed-off-by: Roberto Rosario <roberto.rosario.gonzalez@gmail.com>
25 lines
525 B
Python
25 lines
525 B
Python
from __future__ import unicode_literals
|
|
|
|
from mayan.apps.common.tests import BaseTestCase
|
|
|
|
from ..utils import parse_range
|
|
|
|
|
|
class DocumentUtilsTestCase(BaseTestCase):
|
|
def test_parse_range(self):
|
|
self.assertEqual(
|
|
parse_range('1'), [1]
|
|
)
|
|
|
|
self.assertEqual(
|
|
parse_range('1-5'), [1, 2, 3, 4, 5]
|
|
)
|
|
|
|
self.assertEqual(
|
|
parse_range('2,4,6'), [2, 4, 6]
|
|
)
|
|
|
|
self.assertEqual(
|
|
parse_range('2,4,6-8'), [2, 4, 6, 7, 8]
|
|
)
|