summaryrefslogtreecommitdiff
path: root/docs/testlayer.rst
Commit message (Collapse)AuthorAgeFilesLines
* Reference documentation improvementsdoc-moduleJason Madden2020-06-261-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | - Make it possible to use :mod:`zope.component` - Provide a concise list of all the available APIs in that module and link them to their in-depth descriptions. - Fix several xref errors - Add documentation for setHooks/resetHooks. This also makes it possible to get useful help at the REPL or command line: $ python -c 'import zope.component; help(zope.component.getAdapters)' Help on function getAdapters in module zope.component._api: getAdapters(objects, provided, context=None) Look for all matching adapters to a provided interface for objects Return a list of adapters that match. If an adapter is named, only the most specific adapter of a given name is returned. .. seealso:: Function `~zope.component.getAdapters` for notes, and `~zope.component.interfaces.IComponentArchitecture` for the defining interface.
* Add intersphinx connections.Jason Madden2020-03-231-8/+15
| | | | | | And some internal links as well. Remove mentions of 'IServiceService' from interface documentation, as that's not a thing.
* 100% coverageissue29Jason Madden2017-06-301-3/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add change note and badge to readme. Remove unused class and function. Omit standalonetests.py entirely from coverage. Another unused class. Incorporate feedback in test__api.py * Bring back _callFUT and make the queryAdapterInContext tests call it * Change raise NotImplentedError into specific fails_if_called() calls. Remove redundant argument now that all test in Test_adapts pass under all versions. Remove NotImplementedError from test_globalregistry.py Remove NotImplementedError from test_hookable.py Remove NotImplementedError from test_registry.py Remove NotImplementedError from test_security.py Remove NotImplementedError from test_zcml.py Remove NotImplementedError from test_factory.py Document ZCML feature and devmode. Really accept all arguments unless opted out.
* Enable doctests on Python 3 and PyPyJason Madden2017-06-291-6/+5
| | | | | | | | Drop pypy3.3-5.5-alpha Sphinx needs Python 2.7 or 3.4+ to run, and this is a (really old) version of Python 3.3. (Unfortunately the beta of PyPy3.5 does not appear to be available.)
* Fix tests due to changing output due to latest testrunner.Stephan Richter2014-02-051-4/+4
|
* Merge tseaver-test_cleanup branch.Tres Seaver2012-06-291-0/+111