示例#1
0
 def test_msg_plain_from_irc_action_invariant(self):
     msg_action = '/me does something'
     self.assertEqual(msg_action,
             weechat_otr.msg_plain_from_irc(
                 weechat_otr.msg_irc_from_plain(msg_action)
                 )
             )
示例#2
0
 def test_msg_irc_from_plain_action_invariant(self):
     msg_action = '\x01ACTION does something\x01'
     self.assertEqual(msg_action,
             weechat_otr.msg_irc_from_plain(
                 weechat_otr.msg_plain_from_irc(msg_action)
                 )
             )
示例#3
0
 def test_msg_plain_from_irc_no_action(self):
     msg_no_action = 'just a message'
     self.assertEqual(weechat_otr.msg_plain_from_irc(msg_no_action),
             msg_no_action)
示例#4
0
 def test_msg_plain_from_irc_action(self):
     result = weechat_otr.msg_plain_from_irc('\x01ACTION does something\x01')
     self.assertEqual(result,
             '/me does something')
示例#5
0
 def test_msg_plain_from_irc_action_invariant(self):
     msg_action = '/me does something'
     self.assertEqual(
         msg_action,
         weechat_otr.msg_plain_from_irc(
             weechat_otr.msg_irc_from_plain(msg_action)))
示例#6
0
 def test_msg_plain_from_irc_no_action(self):
     msg_no_action = 'just a message'
     self.assertEqual(weechat_otr.msg_plain_from_irc(msg_no_action),
                      msg_no_action)
示例#7
0
 def test_msg_plain_from_irc_action(self):
     result = weechat_otr.msg_plain_from_irc(
         '\x01ACTION does something\x01')
     self.assertEqual(result, '/me does something')
示例#8
0
 def test_msg_irc_from_plain_action_invariant(self):
     msg_action = '\x01ACTION does something\x01'
     self.assertEqual(
         msg_action,
         weechat_otr.msg_irc_from_plain(
             weechat_otr.msg_plain_from_irc(msg_action)))