mirror of
https://github.com/pybind/pybind11.git
synced 2024-11-11 16:13:53 +00:00
18 lines
418 B
Python
18 lines
418 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from pybind11_tests import smart_ptr_private_first_base as m
|
|
|
|
|
|
def test_make_drvd_pass_base():
|
|
d = m.make_shared_drvd()
|
|
i = m.pass_shared_base(d)
|
|
assert i == 200
|
|
|
|
|
|
def test_make_drvd_up_cast_pass_drvd():
|
|
b = m.make_shared_drvd_up_cast()
|
|
# the base return is down-cast immediately.
|
|
assert b.__class__.__name__ == "drvd"
|
|
i = m.pass_shared_drvd(b)
|
|
assert i == 200
|