<emclass="property">class </em><codeclass="sig-prename descclassname">evennia.commands.default.tests.</code><codeclass="sig-name descname">CommandTest</code><spanclass="sig-paren">(</span><emclass="sig-param"><spanclass="n">methodName</span><spanclass="o">=</span><spanclass="default_value">'runTest'</span></em><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#CommandTest"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.CommandTest"title="Permalink to this definition">¶</a></dt>
<li><p><strong>cmdobj</strong> (<aclass="reference internal"href="evennia.commands.command.html#evennia.commands.command.Command"title="evennia.commands.command.Command"><em>Command</em></a>) – The command object to use.</p></li>
<li><p><strong>input_args</strong> (<em>str</em>) – This should be the full input the Command should
see, such as ‘look here’. This will become <strong>.args</strong> for the Command
instance to parse.</p></li>
<li><p><strong>msg</strong> (<em>str</em><em> or </em><em>dict</em><em>, </em><em>optional</em>) – This is the expected return value(s)
returned through <strong>caller.msg(text=…)</strong> calls in the command. If a string, the
receiver is controlled with the <strong>receiver</strong> kwarg (defaults to <strong>caller</strong>).
If this is a <strong>dict</strong>, it is a mapping
<strong>{receiver1: “expected1”, receiver2: “expected2”,…}</strong> and <strong>receiver</strong> is
ignored. The message(s) are compared with the actual messages returned
to the receiver(s) as the Command runs. Each check uses <strong>.startswith</strong>,
so you can choose to only include the first part of the
returned message if that’s enough to verify a correct result. EvMenu
decorations (like borders) are stripped and should not be included. This
should also not include color tags unless <strong>noansi=False</strong>.
If the command returns texts in multiple separate <strong>.msg</strong>-
calls to a receiver, separate these with <strong>|</strong> if <strong>noansi=True</strong>
(default) and <strong>||</strong> if <strong>noansi=False</strong>. If no <strong>msg</strong> is given (<strong>None</strong>),
then no automatic comparison will be done.</p></li>
<li><p><strong>cmdset</strong> (<em>str</em><em>, </em><em>optional</em>) – If given, make <strong>.cmdset</strong> available on the Command
instance as it runs. While <strong>.cmdset</strong> is normally available on the
Command instance by default, this is usually only used by
commands that explicitly operates/displays cmdsets, like
<strong>examine</strong>.</p></li>
<li><p><strong>noansi</strong> (<em>str</em><em>, </em><em>optional</em>) – By default the color tags of the <strong>msg</strong> is
ignored, this makes them significant. If unset, <strong>msg</strong> must contain
the same color tags as the actual return message.</p></li>
<li><p><strong>caller</strong> (<em>Object</em><em> or </em><em>Account</em><em>, </em><em>optional</em>) – By default <strong>self.char1</strong> is used as the
command-caller (the <strong>.caller</strong> property on the Command). This allows to
execute with another caller, most commonly an Account.</p></li>
<li><p><strong>receiver</strong> (<em>Object</em><em> or </em><em>Account</em><em>, </em><em>optional</em>) – This is the object to receive the
return messages we want to test. By default this is the same as <strong>caller</strong>
(which in turn defaults to is <strong>self.char1</strong>). Note that if <strong>msg</strong> is
a <strong>dict</strong>, this is ignored since the receiver is already specified there.</p></li>
<li><p><strong>cmdstring</strong> (<em>str</em><em>, </em><em>optional</em>) – Normally this is the Command’s <strong>key</strong>.
This allows for tweaking the <strong>.cmdname</strong> property of the
Command**. This isb used for commands with multiple aliases,
where the command explicitly checs which alias was used to
determine its functionality.</p></li>
<li><p><strong>obj</strong> (<em>str</em><em>, </em><em>optional</em>) – This sets the <strong>.obj</strong> property of the Command - the
object on which the Command ‘sits’. By default this is the same as <strong>caller</strong>.
This can be used for testing on-object Command interactions.</p></li>
<li><p><strong>inputs</strong> (<em>list</em><em>, </em><em>optional</em>) – A list of strings to pass to functions that pause to
take input from the user (normally using <strong>@interactive</strong> and
<strong>ret = yield(question)</strong> or <strong>evmenu.get_input</strong>). Each element of the
list will be passed into the command as if the user wrote that at the prompt.</p></li>
<li><p><strong>raw_string</strong> (<em>str</em><em>, </em><em>optional</em>) – Normally the <strong>.raw_string</strong> property is set as
a combination of your <strong>key/cmdname</strong> and <strong>input_args</strong>. This allows
direct control of what this is, for example for testing edge cases
or malformed inputs.</p></li>
</ul>
</dd>
<dtclass="field-even">Returns</dt>
<ddclass="field-even"><p><p><em>str or dict</em>–</p>
<dlclass="simple">
<dt>The message sent to <strong>receiver</strong>, or a dict of</dt><dd><p><strong>{receiver: “msg”, …}</strong> if multiple are given. This is usually
only used with <strong>msg=None</strong> to do the validation externally.</p>
<ddclass="field-odd"><p><strong>AssertionError</strong>– If the returns of <strong>.msg</strong> calls (tested with <strong>.startswith</strong>) does not
match <strong>expected_input</strong>.</p>
</dd>
</dl>
<pclass="rubric">Notes</p>
<p>As part of the tests, all methods of the Command will be called in
<emclass="property">class </em><codeclass="sig-prename descclassname">evennia.commands.default.tests.</code><codeclass="sig-name descname">TestGeneral</code><spanclass="sig-paren">(</span><emclass="sig-param"><spanclass="n">methodName</span><spanclass="o">=</span><spanclass="default_value">'runTest'</span></em><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestGeneral"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestGeneral"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_look</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestGeneral.test_look"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestGeneral.test_look"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_home</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestGeneral.test_home"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestGeneral.test_home"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_inventory</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestGeneral.test_inventory"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestGeneral.test_inventory"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_pose</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestGeneral.test_pose"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestGeneral.test_pose"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_nick</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestGeneral.test_nick"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestGeneral.test_nick"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_get_and_drop</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestGeneral.test_get_and_drop"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestGeneral.test_get_and_drop"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_give</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestGeneral.test_give"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestGeneral.test_give"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_mux_command</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestGeneral.test_mux_command"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestGeneral.test_mux_command"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_say</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestGeneral.test_say"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestGeneral.test_say"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_whisper</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestGeneral.test_whisper"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestGeneral.test_whisper"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_access</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestGeneral.test_access"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestGeneral.test_access"title="Permalink to this definition">¶</a></dt>
<emclass="property">class </em><codeclass="sig-prename descclassname">evennia.commands.default.tests.</code><codeclass="sig-name descname">TestHelp</code><spanclass="sig-paren">(</span><emclass="sig-param"><spanclass="n">methodName</span><spanclass="o">=</span><spanclass="default_value">'runTest'</span></em><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestHelp"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestHelp"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">maxDiff</code><emclass="property"> = None</em><aclass="headerlink"href="#evennia.commands.default.tests.TestHelp.maxDiff"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">setUp</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestHelp.setUp"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestHelp.setUp"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">tearDown</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestHelp.tearDown"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestHelp.tearDown"title="Permalink to this definition">¶</a></dt>
<dd><p>Hook method for deconstructing the test fixture after testing it.</p>
<codeclass="sig-name descname">test_help</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestHelp.test_help"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestHelp.test_help"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_set_help</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestHelp.test_set_help"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestHelp.test_set_help"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_subtopic_fetch</code><emclass="property"> = None</em><aclass="headerlink"href="#evennia.commands.default.tests.TestHelp.test_subtopic_fetch"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_subtopic_fetch_00_test</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="headerlink"href="#evennia.commands.default.tests.TestHelp.test_subtopic_fetch_00_test"title="Permalink to this definition">¶</a></dt>
<dd><p>Check retrieval of subtopics [with helparg=’test’, expected=’Help for testnnMain help text… test/something else test/more’].</p>
<codeclass="sig-name descname">test_subtopic_fetch_01_test_creating_extra_stuff</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="headerlink"href="#evennia.commands.default.tests.TestHelp.test_subtopic_fetch_01_test_creating_extra_stuff"title="Permalink to this definition">¶</a></dt>
<dd><p>Check retrieval of subtopics [with helparg=’test/creating extra stuff’, expected=’Help for test/creating extra st…ating extra stuff/subsubtopicn’].</p>
<codeclass="sig-name descname">test_subtopic_fetch_02_test_creating</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="headerlink"href="#evennia.commands.default.tests.TestHelp.test_subtopic_fetch_02_test_creating"title="Permalink to this definition">¶</a></dt>
<dd><p>Check retrieval of subtopics [with helparg=’test/creating’, expected=’Help for test/creating extra st…ating extra stuff/subsubtopicn’].</p>
<codeclass="sig-name descname">test_subtopic_fetch_03_test_extra</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="headerlink"href="#evennia.commands.default.tests.TestHelp.test_subtopic_fetch_03_test_extra"title="Permalink to this definition">¶</a></dt>
<dd><p>Check retrieval of subtopics [with helparg=’test/extra’, expected=’Help for test/creating extra st…ating extra stuff/subsubtopicn’].</p>
<codeclass="sig-name descname">test_subtopic_fetch_04_test_extra_subsubtopic</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="headerlink"href="#evennia.commands.default.tests.TestHelp.test_subtopic_fetch_04_test_extra_subsubtopic"title="Permalink to this definition">¶</a></dt>
<dd><p>Check retrieval of subtopics [with helparg=’test/extra/subsubtopic’, expected=’Help for test/creating extra st…bsubtopicnnA subsubtopic text’].</p>
<codeclass="sig-name descname">test_subtopic_fetch_05_test_creating_extra_subsub</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="headerlink"href="#evennia.commands.default.tests.TestHelp.test_subtopic_fetch_05_test_creating_extra_subsub"title="Permalink to this definition">¶</a></dt>
<dd><p>Check retrieval of subtopics [with helparg=’test/creating extra/subsub’, expected=’Help for test/creating extra st…bsubtopicnnA subsubtopic text’].</p>
<codeclass="sig-name descname">test_subtopic_fetch_06_test_Something_else</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="headerlink"href="#evennia.commands.default.tests.TestHelp.test_subtopic_fetch_06_test_Something_else"title="Permalink to this definition">¶</a></dt>
<dd><p>Check retrieval of subtopics [with helparg=’test/Something else’, expected=’Help for test/something elsennSomething else’].</p>
<codeclass="sig-name descname">test_subtopic_fetch_07_test_More</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="headerlink"href="#evennia.commands.default.tests.TestHelp.test_subtopic_fetch_07_test_More"title="Permalink to this definition">¶</a></dt>
<dd><p>Check retrieval of subtopics [with helparg=’test/More’, expected=’Help for test/morennAnother t…opics:n test/more/second-more’].</p>
<codeclass="sig-name descname">test_subtopic_fetch_08_test_More_Second_more</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="headerlink"href="#evennia.commands.default.tests.TestHelp.test_subtopic_fetch_08_test_More_Second_more"title="Permalink to this definition">¶</a></dt>
<dd><p>Check retrieval of subtopics [with helparg=’test/More/Second-more’, expected=’Help for test/more/second-more...est/more/second-more/third more’].</p>
<codeclass="sig-name descname">test_subtopic_fetch_09_test_More_more</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="headerlink"href="#evennia.commands.default.tests.TestHelp.test_subtopic_fetch_09_test_More_more"title="Permalink to this definition">¶</a></dt>
<dd><p>Check retrieval of subtopics [with helparg=’test/More/-more’, expected=’Help for test/more/second-more...est/more/second-more/third more’].</p>
<codeclass="sig-name descname">test_subtopic_fetch_10_test_more_second_more_again</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="headerlink"href="#evennia.commands.default.tests.TestHelp.test_subtopic_fetch_10_test_more_second_more_again"title="Permalink to this definition">¶</a></dt>
<dd><p>Check retrieval of subtopics [with helparg=’test/more/second/more again’, expected=’Help for test/more/second-more/more againnnEven more text.n’].</p>
<codeclass="sig-name descname">test_subtopic_fetch_11_test_more_second_third</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="headerlink"href="#evennia.commands.default.tests.TestHelp.test_subtopic_fetch_11_test_more_second_third"title="Permalink to this definition">¶</a></dt>
<dd><p>Check retrieval of subtopics [with helparg=’test/more/second/third’, expected=’Help for test/more/second-more/third morennThird more textn’].</p>
<emclass="property">class </em><codeclass="sig-prename descclassname">evennia.commands.default.tests.</code><codeclass="sig-name descname">TestSystem</code><spanclass="sig-paren">(</span><emclass="sig-param"><spanclass="n">methodName</span><spanclass="o">=</span><spanclass="default_value">'runTest'</span></em><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestSystem"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestSystem"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_py</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestSystem.test_py"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestSystem.test_py"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_scripts</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestSystem.test_scripts"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestSystem.test_scripts"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_objects</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestSystem.test_objects"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestSystem.test_objects"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_about</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestSystem.test_about"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestSystem.test_about"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_server_load</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestSystem.test_server_load"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestSystem.test_server_load"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-prename descclassname">evennia.commands.default.tests.</code><codeclass="sig-name descname">func_test_cmd_tasks</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#func_test_cmd_tasks"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.func_test_cmd_tasks"title="Permalink to this definition">¶</a></dt>
<emclass="property">class </em><codeclass="sig-prename descclassname">evennia.commands.default.tests.</code><codeclass="sig-name descname">TestCmdTasks</code><spanclass="sig-paren">(</span><emclass="sig-param"><spanclass="n">methodName</span><spanclass="o">=</span><spanclass="default_value">'runTest'</span></em><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestCmdTasks"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestCmdTasks"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">setUp</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestCmdTasks.setUp"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestCmdTasks.setUp"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">tearDown</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestCmdTasks.tearDown"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestCmdTasks.tearDown"title="Permalink to this definition">¶</a></dt>
<dd><p>Hook method for deconstructing the test fixture after testing it.</p>
<codeclass="sig-name descname">test_no_tasks</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestCmdTasks.test_no_tasks"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestCmdTasks.test_no_tasks"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_active_task</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestCmdTasks.test_active_task"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestCmdTasks.test_active_task"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_persistent_task</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestCmdTasks.test_persistent_task"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestCmdTasks.test_persistent_task"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_pause_unpause</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestCmdTasks.test_pause_unpause"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestCmdTasks.test_pause_unpause"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_do_task</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestCmdTasks.test_do_task"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestCmdTasks.test_do_task"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_remove</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestCmdTasks.test_remove"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestCmdTasks.test_remove"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_call</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestCmdTasks.test_call"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestCmdTasks.test_call"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_cancel</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestCmdTasks.test_cancel"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestCmdTasks.test_cancel"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_func_name_manipulation</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestCmdTasks.test_func_name_manipulation"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestCmdTasks.test_func_name_manipulation"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_wrong_func_name</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestCmdTasks.test_wrong_func_name"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestCmdTasks.test_wrong_func_name"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_no_input</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestCmdTasks.test_no_input"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestCmdTasks.test_no_input"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_responce_of_yes</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestCmdTasks.test_responce_of_yes"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestCmdTasks.test_responce_of_yes"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_task_complete_waiting_input</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestCmdTasks.test_task_complete_waiting_input"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestCmdTasks.test_task_complete_waiting_input"title="Permalink to this definition">¶</a></dt>
<dd><p>Test for task completing while waiting for input.</p>
<codeclass="sig-name descname">test_new_task_waiting_input</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestCmdTasks.test_new_task_waiting_input"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestCmdTasks.test_new_task_waiting_input"title="Permalink to this definition">¶</a></dt>
<dd><p>Test task completing than a new task with the same ID being made while waitinf for input.</p>
<codeclass="sig-name descname">test_misformed_command</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestCmdTasks.test_misformed_command"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestCmdTasks.test_misformed_command"title="Permalink to this definition">¶</a></dt>
<emclass="property">class </em><codeclass="sig-prename descclassname">evennia.commands.default.tests.</code><codeclass="sig-name descname">TestAdmin</code><spanclass="sig-paren">(</span><emclass="sig-param"><spanclass="n">methodName</span><spanclass="o">=</span><spanclass="default_value">'runTest'</span></em><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestAdmin"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestAdmin"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_emit</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestAdmin.test_emit"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestAdmin.test_emit"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_perm</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestAdmin.test_perm"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestAdmin.test_perm"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_wall</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestAdmin.test_wall"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestAdmin.test_wall"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_ban</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestAdmin.test_ban"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestAdmin.test_ban"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_force</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestAdmin.test_force"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestAdmin.test_force"title="Permalink to this definition">¶</a></dt>
<emclass="property">class </em><codeclass="sig-prename descclassname">evennia.commands.default.tests.</code><codeclass="sig-name descname">TestAccount</code><spanclass="sig-paren">(</span><emclass="sig-param"><spanclass="n">methodName</span><spanclass="o">=</span><spanclass="default_value">'runTest'</span></em><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestAccount"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestAccount"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_ooc_look</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestAccount.test_ooc_look"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestAccount.test_ooc_look"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_ooc</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestAccount.test_ooc"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestAccount.test_ooc"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_ic</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestAccount.test_ic"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestAccount.test_ic"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_ic__other_object</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestAccount.test_ic__other_object"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestAccount.test_ic__other_object"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_ic__nonaccess</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestAccount.test_ic__nonaccess"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestAccount.test_ic__nonaccess"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_password</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestAccount.test_password"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestAccount.test_password"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_option</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestAccount.test_option"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestAccount.test_option"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_who</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestAccount.test_who"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestAccount.test_who"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_quit</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestAccount.test_quit"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestAccount.test_quit"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_sessions</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestAccount.test_sessions"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestAccount.test_sessions"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_color_test</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestAccount.test_color_test"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestAccount.test_color_test"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_char_create</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestAccount.test_char_create"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestAccount.test_char_create"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_char_delete</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestAccount.test_char_delete"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestAccount.test_char_delete"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_quell</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestAccount.test_quell"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestAccount.test_quell"title="Permalink to this definition">¶</a></dt>
<emclass="property">class </em><codeclass="sig-prename descclassname">evennia.commands.default.tests.</code><codeclass="sig-name descname">TestBuilding</code><spanclass="sig-paren">(</span><emclass="sig-param"><spanclass="n">methodName</span><spanclass="o">=</span><spanclass="default_value">'runTest'</span></em><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestBuilding"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestBuilding"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_create</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestBuilding.test_create"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestBuilding.test_create"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_examine</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestBuilding.test_examine"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestBuilding.test_examine"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_set_obj_alias</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestBuilding.test_set_obj_alias"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestBuilding.test_set_obj_alias"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_copy</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestBuilding.test_copy"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestBuilding.test_copy"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_attribute_commands</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestBuilding.test_attribute_commands"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestBuilding.test_attribute_commands"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_nested_attribute_commands</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestBuilding.test_nested_attribute_commands"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestBuilding.test_nested_attribute_commands"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_split_nested_attr</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestBuilding.test_split_nested_attr"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestBuilding.test_split_nested_attr"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_do_nested_lookup</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestBuilding.test_do_nested_lookup"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestBuilding.test_do_nested_lookup"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_name</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestBuilding.test_name"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestBuilding.test_name"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_desc</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestBuilding.test_desc"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestBuilding.test_desc"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_empty_desc</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestBuilding.test_empty_desc"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestBuilding.test_empty_desc"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_desc_default_to_room</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestBuilding.test_desc_default_to_room"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestBuilding.test_desc_default_to_room"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_destroy</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestBuilding.test_destroy"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestBuilding.test_destroy"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_destroy_sequence</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestBuilding.test_destroy_sequence"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestBuilding.test_destroy_sequence"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_dig</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestBuilding.test_dig"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestBuilding.test_dig"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_tunnel</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestBuilding.test_tunnel"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestBuilding.test_tunnel"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_tunnel_exit_typeclass</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestBuilding.test_tunnel_exit_typeclass"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestBuilding.test_tunnel_exit_typeclass"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_exit_commands</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestBuilding.test_exit_commands"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestBuilding.test_exit_commands"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_set_home</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestBuilding.test_set_home"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestBuilding.test_set_home"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_list_cmdsets</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestBuilding.test_list_cmdsets"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestBuilding.test_list_cmdsets"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_typeclass</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestBuilding.test_typeclass"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestBuilding.test_typeclass"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_lock</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestBuilding.test_lock"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestBuilding.test_lock"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_find</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestBuilding.test_find"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestBuilding.test_find"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_script</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestBuilding.test_script"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestBuilding.test_script"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_teleport</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestBuilding.test_teleport"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestBuilding.test_teleport"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_tag</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestBuilding.test_tag"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestBuilding.test_tag"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_spawn</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestBuilding.test_spawn"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestBuilding.test_spawn"title="Permalink to this definition">¶</a></dt>
<emclass="property">class </em><codeclass="sig-prename descclassname">evennia.commands.default.tests.</code><codeclass="sig-name descname">TestCommsChannel</code><spanclass="sig-paren">(</span><emclass="sig-param"><spanclass="n">methodName</span><spanclass="o">=</span><spanclass="default_value">'runTest'</span></em><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestCommsChannel"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestCommsChannel"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">setUp</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestCommsChannel.setUp"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestCommsChannel.setUp"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">tearDown</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestCommsChannel.tearDown"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestCommsChannel.tearDown"title="Permalink to this definition">¶</a></dt>
<dd><p>Hook method for deconstructing the test fixture after testing it.</p>
<codeclass="sig-name descname">test_channel__noarg</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestCommsChannel.test_channel__noarg"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestCommsChannel.test_channel__noarg"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_channel__msg</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestCommsChannel.test_channel__msg"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestCommsChannel.test_channel__msg"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_channel__list</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestCommsChannel.test_channel__list"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestCommsChannel.test_channel__list"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_channel__all</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestCommsChannel.test_channel__all"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestCommsChannel.test_channel__all"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_channel__history</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestCommsChannel.test_channel__history"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestCommsChannel.test_channel__history"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_channel__sub</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestCommsChannel.test_channel__sub"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestCommsChannel.test_channel__sub"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_channel__unsub</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestCommsChannel.test_channel__unsub"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestCommsChannel.test_channel__unsub"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_channel__alias__unalias</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestCommsChannel.test_channel__alias__unalias"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestCommsChannel.test_channel__alias__unalias"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_channel__mute</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestCommsChannel.test_channel__mute"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestCommsChannel.test_channel__mute"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_channel__unmute</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestCommsChannel.test_channel__unmute"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestCommsChannel.test_channel__unmute"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_channel__create</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestCommsChannel.test_channel__create"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestCommsChannel.test_channel__create"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_channel__destroy</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestCommsChannel.test_channel__destroy"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestCommsChannel.test_channel__destroy"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_channel__desc</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestCommsChannel.test_channel__desc"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestCommsChannel.test_channel__desc"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_channel__lock</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestCommsChannel.test_channel__lock"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestCommsChannel.test_channel__lock"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_channel__unlock</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestCommsChannel.test_channel__unlock"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestCommsChannel.test_channel__unlock"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_channel__boot</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestCommsChannel.test_channel__boot"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestCommsChannel.test_channel__boot"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_channel__ban__unban</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestCommsChannel.test_channel__ban__unban"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestCommsChannel.test_channel__ban__unban"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_channel__who</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestCommsChannel.test_channel__who"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestCommsChannel.test_channel__who"title="Permalink to this definition">¶</a></dt>
<emclass="property">class </em><codeclass="sig-prename descclassname">evennia.commands.default.tests.</code><codeclass="sig-name descname">TestBatchProcess</code><spanclass="sig-paren">(</span><emclass="sig-param"><spanclass="n">methodName</span><spanclass="o">=</span><spanclass="default_value">'runTest'</span></em><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestBatchProcess"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestBatchProcess"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_batch_commands</code><spanclass="sig-paren">(</span><emclass="sig-param"><spanclass="n">mock_delay</span></em>, <emclass="sig-param"><spanclass="n">mock_repeat</span></em><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestBatchProcess.test_batch_commands"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestBatchProcess.test_batch_commands"title="Permalink to this definition">¶</a></dt>
<emclass="property">class </em><codeclass="sig-prename descclassname">evennia.commands.default.tests.</code><codeclass="sig-name descname">CmdInterrupt</code><spanclass="sig-paren">(</span><emclass="sig-param"><spanclass="o">**</span><spanclass="n">kwargs</span></em><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#CmdInterrupt"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.CmdInterrupt"title="Permalink to this definition">¶</a></dt>
<dt>auto_help_display_key - (optional) if given, this replaces the string shown</dt><dd><p>in the auto-help listing. This is particularly useful for system-commands
<codeclass="sig-name descname">key</code><emclass="property"> = 'interrupt'</em><aclass="headerlink"href="#evennia.commands.default.tests.CmdInterrupt.key"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">parse</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#CmdInterrupt.parse"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.CmdInterrupt.parse"title="Permalink to this definition">¶</a></dt>
<dd><p>Once the cmdhandler has identified this as the command we
want, this function is run. If many of your commands have a
similar syntax (for example ‘cmd arg1 = arg2’) you should
simply define this once and just let other commands of the
same form inherit from this. See the docstring of this module
for which object properties are available to use (notably
<codeclass="sig-name descname">func</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#CmdInterrupt.func"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.CmdInterrupt.func"title="Permalink to this definition">¶</a></dt>
<dd><p>This is the actual executing part of the command. It is
called directly after self.parse(). See the docstring of this
module for which object properties are available (beyond those
<codeclass="sig-name descname">aliases</code><emclass="property"> = []</em><aclass="headerlink"href="#evennia.commands.default.tests.CmdInterrupt.aliases"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">help_category</code><emclass="property"> = 'general'</em><aclass="headerlink"href="#evennia.commands.default.tests.CmdInterrupt.help_category"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">lock_storage</code><emclass="property"> = 'cmd:all();'</em><aclass="headerlink"href="#evennia.commands.default.tests.CmdInterrupt.lock_storage"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">search_index_entry</code><emclass="property"> = {'aliases': '', 'category': 'general', 'key': 'interrupt', 'no_prefix': ' ', 'tags': '', 'text': '\n ## Base command\n\n (you may see this if a child command had no help text defined)\n\n Usage:\n command [args]\n\n This is the base command class. Inherit from this\n to create new commands.\n\n The cmdhandler makes the following variables available to the\n command methods (so you can always assume them to be there):\n self.caller - the game object calling the command\n self.cmdstring - the command name used to trigger this command (allows\n you to know which alias was used, for example)\n cmd.args - everything supplied to the command following the cmdstring\n (this is usually what is parsed in self.parse())\n cmd.cmdset - the cmdset from which this command was matched (useful only\n seldomly, notably for help-type commands, to create dynamic\n help entries and lists)\n cmd.obj - the object on which this command is defined. If a default command,\n this is usually the same as caller.\n cmd.rawstring - the full raw string input, including any args and no parsing.\n\n The following class properties can/should be defined on your child class:\n\n key - identifier for command (e.g. "look")\n aliases - (optional) list of aliases (e.g. ["l", "loo"])\n locks - lock string (default is "cmd:all()")\n help_category - how to organize this help entry in help system\n (default is "General")\n auto_help - defaults to True. Allows for turning off auto-help generation\n arg_regex - (optional) raw string regex defining how the argument part of\n the command should look in order to match for this command\n (e.g. must it be a space between cmdname and arg?)\n auto_help_display_key - (optional) if given, this replaces the string shown\n in the auto-help listing. This is particularly useful for system-commands\n whose actual key is not really meaningful.\n\n (Note that if auto_help is on, this initial string is also used by the\n system to create the help entry for the command, so it\'s a good idea to\n format it similar to this one). This behavior can be changed by\n overriding the method \'get_help\' of a command: by default, this\n method returns cmd.__doc__ (that is, this very docstring, or\n the docstring of your command). You can, however, extend or\n replace this without disabling auto_help.\n '}</em><aclass="headerlink"href="#evennia.commands.default.tests.CmdInterrupt.search_index_entry"title="Permalink to this definition">¶</a></dt>
<emclass="property">class </em><codeclass="sig-prename descclassname">evennia.commands.default.tests.</code><codeclass="sig-name descname">TestInterruptCommand</code><spanclass="sig-paren">(</span><emclass="sig-param"><spanclass="n">methodName</span><spanclass="o">=</span><spanclass="default_value">'runTest'</span></em><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestInterruptCommand"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestInterruptCommand"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_interrupt_command</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestInterruptCommand.test_interrupt_command"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestInterruptCommand.test_interrupt_command"title="Permalink to this definition">¶</a></dt>
<emclass="property">class </em><codeclass="sig-prename descclassname">evennia.commands.default.tests.</code><codeclass="sig-name descname">TestUnconnectedCommand</code><spanclass="sig-paren">(</span><emclass="sig-param"><spanclass="n">methodName</span><spanclass="o">=</span><spanclass="default_value">'runTest'</span></em><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestUnconnectedCommand"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestUnconnectedCommand"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_info_command</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestUnconnectedCommand.test_info_command"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestUnconnectedCommand.test_info_command"title="Permalink to this definition">¶</a></dt>
<emclass="property">class </em><codeclass="sig-prename descclassname">evennia.commands.default.tests.</code><codeclass="sig-name descname">TestSystemCommands</code><spanclass="sig-paren">(</span><emclass="sig-param"><spanclass="n">methodName</span><spanclass="o">=</span><spanclass="default_value">'runTest'</span></em><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestSystemCommands"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestSystemCommands"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_simple_defaults</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestSystemCommands.test_simple_defaults"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestSystemCommands.test_simple_defaults"title="Permalink to this definition">¶</a></dt>
<codeclass="sig-name descname">test_multimatch</code><spanclass="sig-paren">(</span><spanclass="sig-paren">)</span><aclass="reference internal"href="../_modules/evennia/commands/default/tests.html#TestSystemCommands.test_multimatch"><spanclass="viewcode-link">[source]</span></a><aclass="headerlink"href="#evennia.commands.default.tests.TestSystemCommands.test_multimatch"title="Permalink to this definition">¶</a></dt>