コード例 #1
0
 def edit_description(self, new_description, *items):
     edit_subject = command.EditDescriptionCommand(self.container,
                                                   items,
                                                   newValue=new_description)
     edit_subject.do()
コード例 #2
0
 def testItemsAreNotNew(self):
     self.failIf(
         command.EditDescriptionCommand(
             self.container, [],
             newValue='New description').items_are_new())
コード例 #3
0
ファイル: base.py プロジェクト: casics/extractor
 def onEditDescription(self, item, newValue):
     command.EditDescriptionCommand(items=[item], newValue=newValue).do()