Added basic Typeclass support to @tunnel

This commit is contained in:
Nicholas Matlaga 2017-09-19 16:52:24 -04:00
parent 5a1f4aa320
commit 6d80c973da
2 changed files with 15 additions and 4 deletions

View file

@ -266,6 +266,9 @@ class TestBuilding(CommandTest):
def test_tunnel(self):
self.call(building.CmdTunnel(), "n = TestRoom2;test2", "Created room TestRoom2")
def test_tunnel_exit_typeclass(self):
self.call(building.CmdTunnel(), "n:evennia.objects.objects.DefaultExit = TestRoom3", "Created room TestRoom3")
def test_exit_commands(self):
self.call(building.CmdOpen(), "TestExit1=Room2", "Created new Exit 'TestExit1' from Room to Room2")
self.call(building.CmdLink(), "TestExit1=Room", "Link created TestExit1 > Room (one way).")