Files
cadquery/tests/test_jupyter.py
Miguel Sánchez de León Peque 5069483aef Use pytest to run the test suite
2019-12-12 20:58:47 +01:00

14 lines
400 B
Python

from tests import BaseTest
import cadquery
class TestJupyter(BaseTest):
def test_repr_html(self):
cube = cadquery.Workplane('XY').box(1, 1, 1)
shape = cube.val()
self.assertIsInstance(shape, cadquery.occ_impl.shapes.Solid)
# Test no exception on rendering to html
html = shape._repr_html_()
# TODO: verification improvement: test for valid html