More tests for non-sqlite unit tests
This commit is contained in:
parent
28a85368d6
commit
3e70507730
2 changed files with 2 additions and 1 deletions
|
|
@ -1343,7 +1343,7 @@ class TestXYZGrid(BaseEvenniaTest):
|
||||||
from evennia import create_object
|
from evennia import create_object
|
||||||
|
|
||||||
# we need to create a home room for the grid to be able to be properly deleted
|
# 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.id = settings.DEFAULT_HOME.strip("#")
|
||||||
home.save()
|
home.save()
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -608,6 +608,7 @@ class EvenniaTest(EvenniaTestMixin, TestCase):
|
||||||
@patch("evennia.commands.syscommands.COMMAND_DEFAULT_CLASS", MuxCommand)
|
@patch("evennia.commands.syscommands.COMMAND_DEFAULT_CLASS", MuxCommand)
|
||||||
@patch("evennia.commands.system.COMMAND_DEFAULT_CLASS", MuxCommand)
|
@patch("evennia.commands.system.COMMAND_DEFAULT_CLASS", MuxCommand)
|
||||||
@patch("evennia.commands.unloggedin.COMMAND_DEFAULT_CLASS", MuxCommand)
|
@patch("evennia.commands.unloggedin.COMMAND_DEFAULT_CLASS", MuxCommand)
|
||||||
|
@override_settings(**DEFAULT_SETTINGS)
|
||||||
class BaseEvenniaCommandTest(BaseEvenniaTest, EvenniaCommandTestMixin):
|
class BaseEvenniaCommandTest(BaseEvenniaTest, EvenniaCommandTestMixin):
|
||||||
"""
|
"""
|
||||||
Commands only using the default settings.
|
Commands only using the default settings.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue