Ignore:
Timestamp:
2013-01-19T11:36:27Z (11 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
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.
Message:

Merge from vmiklos.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/skype/test.py

    ra9a6598 rbe98957  
    2828                                line = i.strip()
    2929                                if line.startswith(">> "):
    30                                         bitlbee.expect(line[3:], timeout=10)
     30                                        bitlbee.expect_exact(line[3:], timeout=10)
    3131                                elif line.startswith("<< "):
    3232                                        bitlbee.sendline(line[3:])
     
    7575        def testCall(self):
    7676                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")
    7798
    7899if __name__ == '__main__':
Note: See TracChangeset for help on using the changeset viewer.