Package nltk :: Package test
[hide private]
[frames] | no frames]

Source Code for Package nltk.test

 1  # Natural Language Toolkit: Unit Tests 
 2  # 
 3  # Copyright (C) 2001-2008 NLTK Project 
 4  # Author: Edward Loper <[email protected]> 
 5  # URL: <http://nltk.org> 
 6  # For license information, see LICENSE.TXT 
 7  # 
 8  # $Id: __init__.py 6265 2008-07-26 09:25:03Z stevenbird $ 
 9   
10  """ 
11  Unit tests for the NLTK modules.  These tests are intented to ensure 
12  that changes that we make to NLTK's code don't accidentally introduce 
13  bugs. 
14   
15  Use doctest_driver.py to run the tests:: 
16   
17    doctest_driver.py --help 
18   
19  NB. Popular options for NLTK documentation are:: 
20   
21    --ellipsis --normalize_whitespace 
22   
23  """ 
24