Example #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)
                 )
             )
Example #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)
                 )
             )
Example #3
0
 def test_msg_irc_from_plain_no_action(self):
     msg_no_action = 'just a message'
     self.assertEqual(weechat_otr.msg_irc_from_plain(msg_no_action),
             msg_no_action)
Example #4
0
 def test_msg_irc_from_plain_action(self):
     result = weechat_otr.msg_irc_from_plain('/me does something')
     self.assertEqual(result,
             '\x01ACTION does something\x01')
Example #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)))
Example #6
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)))
Example #7
0
 def test_msg_irc_from_plain_no_action(self):
     msg_no_action = 'just a message'
     self.assertEqual(weechat_otr.msg_irc_from_plain(msg_no_action),
                      msg_no_action)
Example #8
0
 def test_msg_irc_from_plain_action(self):
     result = weechat_otr.msg_irc_from_plain('/me does something')
     self.assertEqual(result, '\x01ACTION does something\x01')