testslide/strict_mock.py [679:697]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                if not testslide.lib._is_wrapped_for_signature_and_type_validation(
                                    # The original value was already wrapped for type
                                    # validation. Skipping additional validation to
                                    # allow, for example, mock_callable to disable
                                    # validation for a very specific mock call rather
                                    # for the whole StrictMock instance
                                    value
                                ) and not isinstance(
                                    # If the return value is a _BaseRunner then type
                                    # validation, if needed, has already been performed
                                    return_value,
                                    testslide.mock_callable._BaseRunner,
                                ):
                                    testslide.lib._validate_return_type(
                                        template_value,
                                        return_value,
                                        self.__dict__["_caller_frame_info"],
                                    )
                                return return_value
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



testslide/strict_mock.py [706:724]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                if not testslide.lib._is_wrapped_for_signature_and_type_validation(
                                    # The original value was already wrapped for type
                                    # validation. Skipping additional validation to
                                    # allow, for example, mock_callable to disable
                                    # validation for a very specific mock call rather
                                    # for the whole StrictMock instance
                                    value
                                ) and not isinstance(
                                    # If the return value is a _BaseRunner then type
                                    # validation, if needed, has already been performed
                                    return_value,
                                    testslide.mock_callable._BaseRunner,
                                ):
                                    testslide.lib._validate_return_type(
                                        template_value,
                                        return_value,
                                        self.__dict__["_caller_frame_info"],
                                    )
                                return return_value
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



