Update of /cvsroot/happydoc/TestCases
In directory usw-pr-cvs1:/tmp/cvs-serv2883/TestCases
Added Files:
test_bug510447.py
Log Message:
New test file for docstring converter quote tests.
--- NEW FILE: test_bug510447.py ---
#
# $Id: test_bug510447.py,v 1.1 2002/02/10 12:49:19 doughellmann Exp $
#
"""Defect #510447
Testing HTML conversion of special characters such as less than
and greather than.
"""
def checkQuotes():
"""Here is a doc string that includes some quotes. 'Single quotes,' "double quotes".
"""
pass
def checkEqualityOperators():
"""Here are some less than and greater than signs. < > < >.
"""
pass
def checkQuotesInExample():
"""Here is a doc string with an example. Within the example, we want some double quotes.
'Example "double quotes"'
"""
pass
def checkEqualityOperatorsInExample():
"""Less than and greater than signs in an example.
'Example < > < >'
"""
pass
def checkAmpersand():
"There is an ampersand here &."
pass
|