Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/skype/test.py

    r650d2b4 r69ae6f2  
    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.