Example #1
0
def cb_rem(md, type, tid, params):
	t = params.split()
	type = t[0]
	if type == 'RL' or type == 'FL':
		email = t[2]
	if type == 'RL':
		equeue.append('UDEL %s\n' % email)
	elif type == 'FL':
		equeue.append('DELFL %s\n' % email)
	msncb.cb_rem(md, type, tid, params)
Example #2
0
 def test_44_cb_rem_WithArgs_Pass_With_Only_Valid_Arguments(self):
     msncb.cb_rem(5, 'TestStr', 'TestStr', 'TestStr')
Example #3
0
	def test_44_cb_rem_WithArgs_Pass_With_Only_Valid_Arguments(self):
		msncb.cb_rem(5,'TestStr','TestStr','TestStr')