Implemented unittests for all default commands in a new and much faster way.

This commit is contained in:
Griatch 2013-05-12 19:53:19 +02:00
parent a6840aff15
commit bd9421d4b0
9 changed files with 133 additions and 528 deletions

View file

@ -1643,9 +1643,9 @@ class CmdExamine(ObjManipCommand):
if things:
string += "\n{wContents{n: %s" % ", ".join([cont.name for cont in obj.contents
if cont not in exits and cont not in pobjs])
separater = "="*78
separator = "-"*78
#output info
return '%s\n%s\n%s' % ( separater, string.strip(), separater )
return '%s\n%s\n%s' % ( separator, string.strip(), separator )
def func(self):
"Process command"