[svn r58286] also contain URL

--HG--
branch : trunk
This commit is contained in:
hpk 2008-09-21 09:18:39 +02:00
parent 029451edab
commit 634679a4db
1 changed files with 10 additions and 10 deletions

View File

@ -1,23 +1,23 @@
""" """
collect and run traditional "unittest.py" style tests.
collect and run traditional "unittest.py" style tests. drop this conftest.py into your project directory so that
all testing directories are below it.
drop this conftest.py into your project directory so that you can mix unittest TestCase subclasses and
all testing directories are below it. py.test style tests (discovery based on name).
you can mix unittest TestCase subclasses and user-extensions such as a custom test_suite()
py.test style tests (discovery based on name). will not be considered (see XXX).
user-extensions such as a custom test_suite() $HeadURL: https://codespeak.net/svn/py/trunk/contrib/py_unittest/conftest.py $
will not be considered (see XXX). $Id: conftest.py 58286 2008-09-21 07:18:39Z hpk $
$Id: conftest.py 58285 2008-09-21 07:17:00Z hpk $
""" """
import py import py
import unittest import unittest
import sys import sys
__version__ = "$Rev: 58285 $".split()[1] __version__ = "$Rev: 58286 $".split()[1]
def configproperty(name): def configproperty(name):
def fget(self): def fget(self):