[pypy-svn] r52563 - pypy/extradoc/talk/pycon2008

briandorsey at codespeak.net briandorsey at codespeak.net
Sat Mar 15 19:14:20 CET 2008


Author: briandorsey
Date: Sat Mar 15 19:14:19 2008
New Revision: 52563

Modified:
   pypy/extradoc/talk/pycon2008/pytest.txt
Log:
pre-talk edits


Modified: pypy/extradoc/talk/pycon2008/pytest.txt
==============================================================================
--- pypy/extradoc/talk/pycon2008/pytest.txt	(original)
+++ pypy/extradoc/talk/pycon2008/pytest.txt	Sat Mar 15 19:14:19 2008
@@ -11,11 +11,9 @@
 Intro
 ==========
 
-* if you think 5 lines are more than 2
-
 * minimal boilerplate code
 
-* cross-project testing tool
+* general purpose testing tool
 
 * developed partly for purposes of PyPy
 
@@ -30,7 +28,7 @@
 
 * setup/teardown on many levels (module, class, function)
 
-* generative tests:
+* generative tests::
 
   def test_one():
       yield function, arg
@@ -71,7 +69,7 @@
 
 * -k selects tests
 
-* -k classname.methodname works as well (XXX trunk only???)
+* -k classname.methodname works as well (trunk only)
 
 * -k -name selects all but name
 
@@ -80,7 +78,7 @@
 installation
 =============
 
-* easy_install pylib XXX check
+* easy_install py
 
 * run py.test on your testing directory
 
@@ -96,7 +94,7 @@
 
 * rsyncs local dir, no need to copy files
 
-XXX demo
+* demo
 
 web reporter
 =============
@@ -110,7 +108,7 @@
 
 * conftest.py does the "magic"
 
-* you can add options per-project (XXX demo)
+* you can add options per-project
 
 * you can change the way tests are run (validating ReST,
   running ecma test suite, etc.)
@@ -129,8 +127,6 @@
 
 * reporter hooks (trunk only)
 
-XXX demo
-
 future
 ==========
 
@@ -138,4 +134,3 @@
 
 * cleanup a bit, more plugin architecture
 
-* ...



More information about the Pypy-commit mailing list