def test_can_personalize_separator(self): sep = '+' q = SendQueue(separator=sep) value = '1+2+3' for i in value.split('+'): q.push(i) self.assertEquals(q.get(), value)
def test_two_values_use_separator(self): q = SendQueue() one = 'one' two = 'two' q.push(one) q.push(two) self.assertEquals(q.get(), '%s%s%s' % (one, q.SEPARATOR, two))
def test_single_value_doesnt_use_separator(self): q = SendQueue() q.push('xxx') self.assertFalse(q.SEPARATOR in q.get())