File: test_except.py

package info (click to toggle)
trimesh 4.5.1-3
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 33,416 kB
  • sloc: python: 35,596; makefile: 96; javascript: 85; sh: 38
file content (31 lines) | stat: -rw-r--r-- 840 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
try:
    from . import generic as g
except BaseException:
    import generic as g


class ExceptionsTest(g.unittest.TestCase):
    def test_module(self):
        # create an ExceptionWrapper
        try:
            raise ValueError("nah")
        except BaseException as E:
            em = g.trimesh.exceptions.ExceptionWrapper(E)

        # checking isinstance should always return false
        # and NOT raise the error
        assert not isinstance(em, dict)

        try:
            # should re-raise `ValueError('nah')`
            em.hi()
            # if we're here raise an error we don't catch
            raise NameError("should not have worked!!")
        except ValueError:
            # should have re-raised ValueError
            pass


if __name__ == "__main__":
    g.trimesh.util.attach_to_log()
    g.unittest.main()