diff --git a/sopel/tests/mocks.py b/sopel/tests/mocks.py index eff92ff3b0..bb1f2b731d 100644 --- a/sopel/tests/mocks.py +++ b/sopel/tests/mocks.py @@ -105,6 +105,10 @@ def channel_joined(self, channel, users=None, blocking=None): this step. If not specified, this :class:`MockIRCServer` instance's ``join_threads`` argument will be obeyed. + .. versionadded:: 7.1 + + The ``blocking`` parameter. + .. seealso:: The ``join_threads`` argument to :class:`MockIRCServer`. @@ -157,6 +161,10 @@ def mode_set(self, channel, flags, users, blocking=None): this step. If not specified, this :class:`MockIRCServer` instance's ``join_threads`` argument will be obeyed. + .. versionadded:: 7.1 + + The ``blocking`` parameter. + .. seealso:: The ``join_threads`` argument to :class:`MockIRCServer`. @@ -194,6 +202,10 @@ def join(self, user, channel, blocking=None): this step. If not specified, this :class:`MockIRCServer` instance's ``join_threads`` argument will be obeyed. + .. versionadded:: 7.1 + + The ``blocking`` parameter. + .. seealso:: The ``join_threads`` argument to :class:`MockIRCServer`. @@ -229,6 +241,10 @@ def say(self, user, channel, text, blocking=None): this step. If not specified, this :class:`MockIRCServer` instance's ``join_threads`` argument will be obeyed. + .. versionadded:: 7.1 + + The ``blocking`` parameter. + .. seealso:: The ``join_threads`` argument to :class:`MockIRCServer`. @@ -263,6 +279,10 @@ def pm(self, user, text, blocking=None): this step. If not specified, this :class:`MockIRCServer` instance's ``join_threads`` argument will be obeyed. + .. versionadded:: 7.1 + + The ``blocking`` parameter. + .. seealso:: The ``join_threads`` argument to :class:`MockIRCServer`.