diff options
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/test_markdown_link_style/test_logging.py | 5 | 
1 files changed, 5 insertions, 0 deletions
| diff --git a/tests/test_markdown_link_style/test_logging.py b/tests/test_markdown_link_style/test_logging.py index 39787c5..3ccf72c 100644 --- a/tests/test_markdown_link_style/test_logging.py +++ b/tests/test_markdown_link_style/test_logging.py @@ -48,5 +48,10 @@ class TestMDLSLogger(object):          self.logger.warning(log_msg)          assert self.stream.getvalue().strip('\n') == log_msg +    def test_error(self): +        log_msg = 'DEBUG::ERROR' +        self.logger.error(log_msg) +        assert self.stream.getvalue().strip('\n') == log_msg +      def teardown(self):          pass | 
