You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
| 12345678 |
- from oscar.forms.widgets import datetime_format_to_js_input_mask
-
-
- def test_js_input_mask():
- # Test all the possible input formats in one go
- fmt = '%Y-%m-%d %y %H:%M:%S %I'
- input_mask = datetime_format_to_js_input_mask(fmt)
- assert input_mask == 'yyyy-mm-dd yy HH:MM:ss hh'
|