Changeset be98957 for protocols/skype/test.py
- Timestamp:
- 2013-01-19T11:36:27Z (12 years ago)
- Branches:
- master
- Children:
- b2dc873, e4f5ca8
- Parents:
- a9a6598 (diff), 69ae6f2 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/skype/test.py
ra9a6598 rbe98957 28 28 line = i.strip() 29 29 if line.startswith(">> "): 30 bitlbee.expect (line[3:], timeout=10)30 bitlbee.expect_exact(line[3:], timeout=10) 31 31 elif line.startswith("<< "): 32 32 bitlbee.sendline(line[3:]) … … 75 75 def testCall(self): 76 76 self.mock("call") 77 78 def testCallFailed(self): 79 self.mock("call-failed") 80 81 def testAddYes(self): 82 self.mock("add-yes") 83 84 def testAddNo(self): 85 self.mock("add-no") 86 87 def testGroupchatInvited(self): 88 self.mock("groupchat-invited") 89 90 def testGroupchatInvite(self): 91 self.mock("groupchat-invite") 92 93 def testCalledYes(self): 94 self.mock("called-yes") 95 96 def testCalledNo(self): 97 self.mock("called-no") 77 98 78 99 if __name__ == '__main__':
Note: See TracChangeset
for help on using the changeset viewer.