Fixed default_value in option request
This commit is contained in:
parent
a0f4506c35
commit
2b9c0b4620
@ -177,6 +177,7 @@ class ConfigVariable:
|
|||||||
"""
|
"""
|
||||||
data = {
|
data = {
|
||||||
'key': self.name,
|
'key': self.name,
|
||||||
|
'default_value': self.default_value,
|
||||||
'value': config[self.name],
|
'value': config[self.name],
|
||||||
'input_type': self.input_type,
|
'input_type': self.input_type,
|
||||||
'label': self.label,
|
'label': self.label,
|
||||||
|
0
tests/unit/config/__init__.py
Normal file
0
tests/unit/config/__init__.py
Normal file
24
tests/unit/config/test_api.py
Normal file
24
tests/unit/config/test_api.py
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
from unittest import TestCase
|
||||||
|
from unittest.mock import patch
|
||||||
|
|
||||||
|
from openslides.config.api import ConfigVariable
|
||||||
|
|
||||||
|
|
||||||
|
class TestConfigVariable(TestCase):
|
||||||
|
@patch('openslides.config.api.config', {'test_variable': None})
|
||||||
|
def test_default_value_in_data(self):
|
||||||
|
"""
|
||||||
|
Tests, that the default_value attribute is in the 'data' property of
|
||||||
|
a ConfigVariable instance.
|
||||||
|
"""
|
||||||
|
config_variable = ConfigVariable('test_variable', 'test_default_value')
|
||||||
|
|
||||||
|
self.assertIn(
|
||||||
|
'default_value',
|
||||||
|
config_variable.data,
|
||||||
|
"Config_varialbe.data should have a key 'default_value'")
|
||||||
|
self.assertEqual(
|
||||||
|
config_variable.data['default_value'],
|
||||||
|
'test_default_value',
|
||||||
|
"The value of config_variable.data['default_value'] should be the same "
|
||||||
|
"as set as second argument of ConfigVariable()")
|
Loading…
Reference in New Issue
Block a user