Files
mayan-edms/mayan/apps/ocr/tests/test_setting_migrations.py
Roberto Rosario a7cf6b5664 Update migrations to accept migrated settings
- 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>
2019-12-10 19:57:14 -04:00

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
)