summaryrefslogtreecommitdiff
path: root/tests/unit/config/test_configtypes.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/config/test_configtypes.py')
-rw-r--r--tests/unit/config/test_configtypes.py15
1 files changed, 0 insertions, 15 deletions
diff --git a/tests/unit/config/test_configtypes.py b/tests/unit/config/test_configtypes.py
index 7d7021770..e1cefec05 100644
--- a/tests/unit/config/test_configtypes.py
+++ b/tests/unit/config/test_configtypes.py
@@ -2086,21 +2086,6 @@ class TestConfirmQuit:
klass().to_py(val)
-class TestTimestampTemplate:
-
- @pytest.fixture
- def klass(self):
- return configtypes.TimestampTemplate
-
- @pytest.mark.parametrize('val', ['foobar', '%H:%M', 'foo %H bar %M'])
- def test_to_py_valid(self, klass, val):
- assert klass().to_py(val) == val
-
- def test_to_py_invalid(self, klass):
- with pytest.raises(configexc.ValidationError):
- klass().to_py('%')
-
-
class TestKey:
@pytest.fixture