Exemplo n.º 1
0
 def test_marshall_string_space(self):
     self.assertEqual(b"5:bla l ", marshall("bla l"))
Exemplo n.º 2
0
 def send_msg(self, data):
     marshalled_data = marshall(data)
     # self.mutter("OUT: %r" % marshalled_data)
     self.send_fn(marshalled_data)
Exemplo n.º 3
0
 def test_marshall_string(self):
     self.assertEqual(b"3:foo ", marshall("foo"))
Exemplo n.º 4
0
 def test_marshall_list_nested(self):
     self.assertEqual(b"( ( ( 3 ) 4 ) ) ", marshall([[[3], 4]]))
Exemplo n.º 5
0
 def test_marshall_list_mixed(self):
     self.assertEqual(b"( 1 3 4 3:str ) ", marshall([1,3,4,"str"]))
Exemplo n.º 6
0
 def test_marshall_literal(self):
     self.assertEqual(b"foo ", marshall(literal("foo")))
Exemplo n.º 7
0
 def test_marshall_int(self):
     self.assertEqual(b"1 ", marshall(1))
Exemplo n.º 8
0
 def test_marshall_list(self):
     self.assertEqual(b"( 1 2 3 4 ) ", marshall([1,2,3,4]))
Exemplo n.º 9
0
 def test_marshall_list_nested(self):
     self.assertEqual("( ( ( 3 ) 4 ) ) ", marshall([[[3], 4]]))
Exemplo n.º 10
0
 def test_marshall_string_space(self):
     self.assertEqual("5:bla l ", marshall("bla l"))
Exemplo n.º 11
0
 def test_marshall_string(self):
     self.assertEqual("3:foo ", marshall("foo"))
Exemplo n.º 12
0
 def test_marshall_literal(self):
     self.assertEqual("foo ", marshall(literal("foo")))
Exemplo n.º 13
0
 def test_marshall_list_mixed(self):
     self.assertEqual("( 1 3 4 3:str ) ", marshall([1, 3, 4, "str"]))
Exemplo n.º 14
0
 def test_marshall_list(self):
     self.assertEqual("( 1 2 3 4 ) ", marshall([1, 2, 3, 4]))
Exemplo n.º 15
0
 def test_marshall_int(self):
     self.assertEqual("1 ", marshall(1))