From 850472124f4edc3869a402b5b4866c1692c1e9f4 Mon Sep 17 00:00:00 2001 From: Marlon Rodriguez Garcia Date: Tue, 19 Nov 2024 14:36:05 -0500 Subject: [PATCH] Add test to improve coverage --- tests/test_base.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/test_base.py b/tests/test_base.py index efa1bc81..a24fb7a4 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()