ok

Mini Shell

Direktori : /proc/thread-self/root/proc/thread-self/root/usr/lib/python3.6/site-packages/josepy/
Upload File :
Current File : //proc/thread-self/root/proc/thread-self/root/usr/lib/python3.6/site-packages/josepy/errors_test.py

"""Tests for josepy.errors."""
import unittest


class UnrecognizedTypeErrorTest(unittest.TestCase):
    def setUp(self):
        from josepy.errors import UnrecognizedTypeError
        self.error = UnrecognizedTypeError('foo', {'type': 'foo'})

    def test_str(self):
        self.assertEqual(
            "foo was not recognized, full message: {'type': 'foo'}",
            str(self.error))


if __name__ == '__main__':
    unittest.main()  # pragma: no cover

Zerion Mini Shell 1.0