summaryrefslogtreecommitdiff
path: root/src/zope/security/tests/test_metaconfigure.py
Commit message (Collapse)AuthorAgeFilesLines
* Simplify _compat.py now that we only run on newer PythonsJason Madden2017-09-081-13/+4
| | | | | | | | | | | | | | | | | | - We have u'literals' so we don't need a _u() function. For the record the Emacs replacement regex was `_u(\(['"]\)\([^)]*\)\1) -> u\1\2\1`. Amazingly, I typed that right on the first try. A few things were only used in one (test) file or function, so it was better to keep the use, if any, local and out of the "public" api: - We can use io.StringIO everywhere and it's fast. It was only imported in one file anyway. - We can just import pickle. It was only imported in one file anyway. - TEXT was only used in one test function, `type(u'')` is just as clear (especially since the usual name is `text_type`). - reload was only used in one test function, so move the definition there.
* Py3k: remove Py3 syntax errors.Tres Seaver2013-02-131-3/+5
|
* Full unit test coverage for z.s.metaconfigure.ClassDirective.Tres Seaver2013-02-121-0/+382
|
* Coverage for z.s.metaconfigure.{allow,provide}.Tres Seaver2013-02-111-0/+204
|
* Coverage for z.s.metaconfigure.provideModule.Tres Seaver2013-02-111-7/+46
|
* Begin coverage for z.s.metaconfigure.Tres Seaver2013-02-111-0/+33