1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
#!/usr/bin/python
"""
:Author: David Goodger
:Contact: goodger@users.sourceforge.net
:Revision: $Revision: 1.2 $
:Date: $Date: 2002/04/25 03:42:43 $
:Copyright: This module has been placed in the public domain.
Tests for states.py.
"""
import unittest
from __init__ import DocutilsTestSupport
states = DocutilsTestSupport.states
class FuctionTests(unittest.TestCase):
escaped = r'escapes: \*one, \\*two, \\\*three'
nulled = 'escapes: \x00*one, \x00\\*two, \x00\\\x00*three'
unescaped = r'escapes: *one, \*two, \*three'
def test_escape2null(self):
nulled = states.escape2null(self.escaped)
self.assertEquals(nulled, self.nulled)
nulled = states.escape2null(self.escaped + '\\')
self.assertEquals(nulled, self.nulled + '\x00')
def test_unescape(self):
unescaped = states.unescape(self.nulled)
self.assertEquals(unescaped, self.unescaped)
restored = states.unescape(self.nulled, 1)
self.assertEquals(restored, self.escaped)
if __name__ == '__main__':
unittest.main()
|