예제 #1
0
파일: tests.py 프로젝트: 0xmilk/appscale
 def test_decode_2(self):
     """
     Test that we haven't broken normal encoding
     """
     c = CompatCookie()
     c['test'] = "\xf0"
     c2 = CompatCookie()
     c2.load(c.output())
     self.assertEqual(c['test'].value, c2['test'].value)
예제 #2
0
 def test_decode_2(self):
     """
     Test that we haven't broken normal encoding
     """
     c = CompatCookie()
     c['test'] = "\xf0"
     c2 = CompatCookie()
     c2.load(c.output())
     self.assertEqual(c['test'].value, c2['test'].value)
예제 #3
0
파일: tests.py 프로젝트: 0xmilk/appscale
 def test_decode(self):
     """
     Test that we can still preserve semi-colons and commas
     """
     c = CompatCookie()
     c['test'] = "An,awkward;value"
     c2 = CompatCookie()
     c2.load(c.output())
     self.assertEqual(c['test'].value, c2['test'].value)
예제 #4
0
 def test_decode(self):
     """
     Test that we can still preserve semi-colons and commas
     """
     c = CompatCookie()
     c['test'] = "An,awkward;value"
     c2 = CompatCookie()
     c2.load(c.output())
     self.assertEqual(c['test'].value, c2['test'].value)