Path: csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!gegeweb.org!de-l.enfer-du-nord.net!feeder1.enfer-du-nord.net!feeds.phibee-telecom.net!newsfeed.xs4all.nl!newsfeed6.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-announce-list@python.org Delivered-To: python-announce-list@mail.python.org X-Spam-Status: OK 0.023 X-Spam-Evidence: '*H*': 0.95; '*S*': 0.00; 'api.': 0.05; 'unittest': 0.07; 'release,': 0.09; 'run.': 0.09; 'testcase': 0.16; 'testcases': 0.16; 'primarily': 0.21; 'url:code': 0.23; "python's": 0.24; 'tests': 0.25; "i'm": 0.27; 'message- id:@mail.gmail.com': 0.29; 'environment': 0.29; 'module': 0.30; 'austin': 0.30; 'class': 0.30; 'changes': 0.31; 'minor': 0.32; 'url:downloads': 0.32; 'received:209.85.216.46': 0.32; 'received :mail-qw0-f46.google.com': 0.32; 'skip:" 20': 0.35; 'announce': 0.36; 'subject:skip:p 10': 0.37; 'to:addr:python-announce-list': 0.37; 'run': 0.37; 'members': 0.37; 'received:google.com': 0.38; 'received:209.85': 0.38; 'url:list': 0.39; 'to:addr:python.org': 0.39; 'url:p': 0.62; 'here:': 0.65; 'pleased': 0.65 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; bh=t0MN5DyWHHMJcHsLyDNSBhmIKWnrArlCvAMDZc1Ln30=; b=VN+c3qOiExPmlW70rBhAUSkLfVNBGvOHl/bi3Ztzan5rPPmlJWbcNRzsaMTnjbRLuS kUlQUASHcwgJOrQlHM80ptqtwWbyGdwkvPbyANCIAefr6wDJp4zXXFZetllojKAbsS+x CSw+dEEMTcvH25gQxksdAK4usCuqK6YwRPXeg= MIME-Version: 1.0 Date: Tue, 16 Aug 2011 21:53:17 +0200 Subject: parameterized-testcase 0.2 From: Austin Bingham To: python-announce-list@python.org Content-Type: text/plain; charset=ISO-8859-1 X-Mailman-Approved-At: Wed, 17 Aug 2011 02:10:19 +0200 X-BeenThere: python-announce-list@python.org X-Mailman-Version: 2.1.12 Precedence: list Reply-To: python-list@python.org List-Id: Announcement-only list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Approved: python-announce-list@python.org Newsgroups: comp.lang.python.announce Message-ID: Lines: 16 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1313539820 news.xs4all.nl 23928 [2001:888:2000:d::a6]:34262 X-Complaints-To: abuse@xs4all.nl Xref: x330-a1.tempe.blueboxinc.net comp.lang.python.announce:298 I'm pleased to announce the release of parameterized-testcase 0.2. You can get it here: http://code.google.com/p/parameterized-testcase/downloads/list This is primarily a documentation release, with only minor changes to the API. What is parameterized-testcase? ======================== parameterized-testcase works with Python's standard unittest module to provide a means to run TestCases with different "parameterizations". Parameterizations mean any members of the TestCase class which influence the tests or the environment in which they run. Austin