More tests for non-sqlite unit tests

This commit is contained in:
Griatch 2023-12-10 21:43:59 +01:00
parent 28a85368d6
commit 3e70507730
2 changed files with 2 additions and 1 deletions

View file

@ -1343,7 +1343,7 @@ class TestXYZGrid(BaseEvenniaTest):
from evennia import create_object
# we need to create a home room for the grid to be able to be properly deleted
home = create_object(typeclass="typeclasses.rooms.Room", key="Home")
home = create_object(typeclass="typeclasses.rooms.Room", key="Home", nohome=True)
home.id = settings.DEFAULT_HOME.strip("#")
home.save()

View file

@ -608,6 +608,7 @@ class EvenniaTest(EvenniaTestMixin, TestCase):
@patch("evennia.commands.syscommands.COMMAND_DEFAULT_CLASS", MuxCommand)
@patch("evennia.commands.system.COMMAND_DEFAULT_CLASS", MuxCommand)
@patch("evennia.commands.unloggedin.COMMAND_DEFAULT_CLASS", MuxCommand)
@override_settings(**DEFAULT_SETTINGS)
class BaseEvenniaCommandTest(BaseEvenniaTest, EvenniaCommandTestMixin):
"""
Commands only using the default settings.