summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_hmac.py
Commit message (Collapse)AuthorAgeFilesLines
* Add more tests from RFC 2202.Jeremy Hylton2003-05-271-2/+55
|
* Combine the functionality of test_support.run_unittest()Walter Dörwald2003-05-011-6/+6
| | | | | | | | | | and test_support.run_classtests() into run_unittest() and use it wherever possible. Also don't use "from test.test_support import ...", but "from test import test_support" in a few spots. From SF patch #662807.
* Standardize behavior: no docstrings in test functions; create a singleGuido van Rossum2002-08-221-13/+19
| | | | suite merging all test cases.
* Get rid of relative imports in all unittests. Now anything thatBarry Warsaw2002-07-231-1/+1
| | | | | | | | | | | imports e.g. test_support must do so using an absolute package name such as "import test.test_support" or "from test import test_support". This also updates the README in Lib/test, and gets rid of the duplicate data dirctory in Lib/test/data (replaced by Lib/email/test/data). Now Tim and Jack can have at it. :)
* Use attributes appropriatelyNeal Norwitz2002-04-011-1/+1
|
* Whitespace normalization.Tim Peters2001-11-131-2/+1
|
* [Patch #477336] Add an extensive PyUnit based testsuite for the hmacAndrew M. Kuchling2001-11-021-1/+108
| | | | module
* Test for new hmac module.Guido van Rossum2001-09-111-0/+2