-
-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathtest_input_attrs.py
27 lines (18 loc) · 968 Bytes
/
test_input_attrs.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
from pytest_django.fixtures import SettingsWrapper
from bootstrap_datepicker_plus._base import BasePickerInput
def test_input_config_passed_as_input_attr() -> None:
widget_input = BasePickerInput()
assert "data-dbdp-config" in widget_input.build_attrs({})
def test_presence_of_debug_attr_when_debug_true(settings: SettingsWrapper) -> None:
settings.DEBUG = True
widget_input = BasePickerInput()
assert "data-dbdp-debug" in widget_input.build_attrs({})
def test_absence_of_debug_attr_when_debug_false(settings: SettingsWrapper) -> None:
settings.DEBUG = False
widget_input = BasePickerInput()
assert "data-dbdp-debug" not in widget_input.build_attrs({})
def test_absence_of_debug_attr_when_debug_overrides(settings: SettingsWrapper) -> None:
settings.DEBUG = True
settings.BOOTSTRAP_DATEPICKER_PLUS = {"debug": False}
widget_input = BasePickerInput()
assert "data-dbdp-debug" not in widget_input.build_attrs({})