From 90188b125670ff8f9078f0fdb185728afb12380c Mon Sep 17 00:00:00 2001 From: hpk Date: Sat, 3 Feb 2007 12:18:25 +0100 Subject: [PATCH] [svn r37855] a first rough list for py.test namespace cleanup --HG-- branch : trunk --- py/doc/TODO.txt | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/py/doc/TODO.txt b/py/doc/TODO.txt index 54938bc7b..600a56baa 100644 --- a/py/doc/TODO.txt +++ b/py/doc/TODO.txt @@ -78,6 +78,30 @@ APIGEN / source viewer with help code from py.__.rest.directive.... make sure that the txt files in py/documentation/ use it +* private py.test not-meant-to-be-public API: + here is a rough list what we want public on collectors: + + py.test.Collector. + startcapture() + finishcapture() + setup() + teardown() + listchain() + listnames() + run() + join() + * all collector class properties * + + and on py.test.Function|Item (which also has the collector interface): + execute() + + move all Outcome (Skipped/Passed/...) classes to + a global place (outcome.py?) + + all other attributes of collectors shall become private + +* after the above API cleanup there might be more :) + testing -----------