summaryrefslogtreecommitdiff
path: root/pelican/tests/test_testsuite.py
blob: fa9301392b428e166ca4ca10f16fc9cda344c836 (plain)
1
2
3
4
5
6
7
8
9
10
import warnings

from pelican.tests.support import unittest


class TestSuiteTest(unittest.TestCase):

    def test_error_on_warning(self):
        with self.assertRaises(UserWarning):
            warnings.warn('test warning')