Esempio n. 1
0
 def testSimpleMarshal(self):
     '''Simple Marshal Complete Test'''
     self.assertEqual(simple_marshal('string'), '')
     self.assertEqual(simple_marshal(True), ':boolean')
     self.assertEqual(simple_marshal(42), ":int")
     self.assertEqual(simple_marshal(3.1415), ":float")
     self.assertEqual(simple_marshal(DateTime()), ":date")
Esempio n. 2
0
 def testSimpleMarshal(self):
     '''Simple Marshal Complete Test'''
     self.assertEqual(simple_marshal('string'), '')
     self.assertEqual(simple_marshal(True), ':boolean')
     self.assertEqual(simple_marshal(42), ":int")
     self.assertEqual(simple_marshal(3.1415), ":float")
     self.assertEqual(simple_marshal(DateTime()), ":date")
Esempio n. 3
0
 def testMarshalFloat(self):
     self.assertEqual(simple_marshal(3.1415), ":float")
Esempio n. 4
0
 def testMarshalInt(self):
     self.assertEqual(simple_marshal(42), ":int")
Esempio n. 5
0
 def testMarshalBool(self):
     self.assertEqual(simple_marshal(True), ':boolean')
Esempio n. 6
0
 def testMarshalString(self):
     self.assertEqual(simple_marshal('string'), '')
Esempio n. 7
0
 def testMarshalUnicode(self):
     arg_type = ''
     self.assertEqual(simple_marshal(u'unic\xF3de'), arg_type)
Esempio n. 8
0
 def testMarshalDate(self):
     self.assertEqual(simple_marshal(DateTime()), ":date")
Esempio n. 9
0
 def testMarshalInt(self):
     self.assertEqual(simple_marshal(42), ":int")
Esempio n. 10
0
 def testMarshalBool(self):
     self.assertEqual(simple_marshal(True), ':boolean')
Esempio n. 11
0
 def testMarshalString(self):
     self.assertEqual(simple_marshal('string'), '')
Esempio n. 12
0
 def testSimpleMarshal(self):
     self.assertEqual(simple_marshal(u'unic\xF3de'), ":utf8:ustring")
Esempio n. 13
0
 def testMarshalUnicode(self):
     self.assertEqual(simple_marshal(u'unic\xF3de'), ":utf8:ustring")
Esempio n. 14
0
 def testMarshalDate(self):
     self.assertEqual(simple_marshal(DateTime()), ":date")
Esempio n. 15
0
 def testMarshalFloat(self):
     self.assertEqual(simple_marshal(3.1415), ":float")
Esempio n. 16
0
 def testMarshalUnicode(self):
     if PY2:
         arg_type = ':utf8:ustring'
     else:
         arg_type = ''
     self.assertEqual(simple_marshal(u'unic\xF3de'), arg_type)
Esempio n. 17
0
 def testMarshalUnicode(self):
     if PY2:
         arg_type = ':utf8:ustring'
     else:
         arg_type = ''
     self.assertEqual(simple_marshal(u'unic\xF3de'), arg_type)