MCPcopy Create free account
hub / github.com/pybind/pybind11 / test_is_setter

Function test_is_setter

tests/test_methods_and_attributes.py:709–715  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

707
708
709def test_is_setter():
710 fld = m.exercise_is_setter.Field()
711 assert fld.int_value == -99
712 setter_return = fld.int_value = 100
713 assert isinstance(setter_return, int)
714 assert setter_return == 100
715 assert fld.int_value == 100

Callers

nothing calls this directly

Calls 1

isinstanceFunction · 0.85

Tested by

no test coverage detected