Debugged and added @cpattr and @mvattr. Added unittest cases for all default commands for which they are suitable. Many small bug fixes as part of that.

This commit is contained in:
Griatch 2011-04-21 16:45:18 +00:00
parent 7b43c4a608
commit 6f0d21802b
11 changed files with 328 additions and 155 deletions

View file

@ -64,10 +64,10 @@ class DefaultCmdSet(CmdSet):
self.add(building.CmdSetAttribute())
self.add(building.CmdName())
self.add(building.CmdDesc())
#self.add(building.CmdCpAttr()) #TODO - need testing/debugging
#self.add(building.CmdMvAttr()) #TODO - need testing/debugging
self.add(building.CmdCpAttr())
self.add(building.CmdMvAttr())
self.add(building.CmdCopy())
self.add(building.CmdFind())
self.add(building.CmdCopy()) #TODO - need testing/debugging
self.add(building.CmdOpen())
self.add(building.CmdLink())
self.add(building.CmdUnLink())