pybind11/tests/test_class_sh_shared_ptr_copy_move.py
2021-06-29 05:57:32 -07:00

20 lines
267 B
Python

# -*- coding: utf-8 -*-
from pybind11_tests import class_sh_shared_ptr_copy_move as m
def test_avl_copy():
m.test_avl_copy()
def test_def_copy():
m.test_def_copy()
def test_avl_move():
m.test_avl_move()
def test_def_move():
m.test_def_move()