- Unify all conditional YAML load under utils.smart_yaml_load. - Update all setting migrations to use the smart setting test mixin to create the test config file. Signed-off-by: Roberto Rosario <roberto.rosario@mayan-edms.com>
29 lines
988 B
Python
29 lines
988 B
Python
from __future__ import unicode_literals
|
|
|
|
from mayan.apps.common.tests.base import BaseTestCase
|
|
from mayan.apps.smart_settings.tests.mixins import SmartSettingTestMixin
|
|
|
|
from ..settings import setting_ocr_backend_arguments
|
|
|
|
|
|
class OCRSettingMigrationTestCase(SmartSettingTestMixin, BaseTestCase):
|
|
def test_ocr_backend_arguments_0001(self):
|
|
test_value = {'location': 'test value'}
|
|
self.test_setting = setting_ocr_backend_arguments
|
|
self.test_config_value = '{}'.format(test_value)
|
|
self._create_test_config_file()
|
|
|
|
self.assertEqual(
|
|
setting_ocr_backend_arguments.value, test_value
|
|
)
|
|
|
|
def test_ocr_backend_arguments_0001_with_dict(self):
|
|
test_value = {'location': 'test value'}
|
|
self.test_setting = setting_ocr_backend_arguments
|
|
self.test_config_value = test_value
|
|
self._create_test_config_file()
|
|
|
|
self.assertEqual(
|
|
setting_ocr_backend_arguments.value, test_value
|
|
)
|