From c8badbd338c03b3292db3ae31dff1b42ae20bde8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=A5=D1=80=D0=B0=D0=BC=D1=86=D0=BE=D0=B2=20=D0=94=D0=BC?= =?UTF-8?q?=D0=B8=D1=82=D1=80=D0=B8=D0=B9=20=D0=A0=D0=BE=D0=BC=D0=B0=D0=BD?= =?UTF-8?q?=D0=BE=D0=B2=D0=B8=D1=87?= Date: Mon, 11 Nov 2024 10:05:36 +0300 Subject: [PATCH] Adding test to increase coverage - test_set_high_numwords_not_implemented --- tests/test_base.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/test_base.py b/tests/test_base.py index efa1bc81..d1a18c1f 100644 --- a/tests/test_base.py +++ b/tests/test_base.py @@ -62,3 +62,7 @@ def test_is_title(self): self.base.title("one"), "one" ) + + def test_set_high_numwords_not_implemented(self): + with self.assertRaises(NotImplementedError): + self.base.set_high_numwords(['cent', 'novemnonagint', 'octononagint'])