Displaying 3 results from an estimated 3 matches for "doctest".
Did you mean:
do_test
2009 Jun 15
0
python bindings update
Hi,
here is a webpage for the Python bindings:
http://certik.github.com/python-theora/
Changes since the last time:
* tests added, e.g. there is a script that downloads some theora tests
videos and then I test the python wrappers on them
* every single method has a docstring with a doctested example
* sphinx documentation added, see the link above
* couple minor changes, like better control what arrays go to the encoder
I suggest you browse the theora module docs:
http://certik.github.com/python-theora/module_theora.html
and go over the examples. This should give you an idea what...
2006 Feb 10
2
[LLVMdev] PyPy sprint announcement: PyCon 2006, Texas, Feb 27st - March 2nd
...ing with different garbage collection strategies.
- Implementing Python 2.5 features in PyPy
- Implementation of constraints solvers and integration of dataflow
variables to PyPy.
- Implement new features and improve the 'py' lib and py.test
which are heavily used by PyPy (doctests/test selection/...).
- Generally experiment with PyPy -- for example, play with
transparent distribution of objects or coroutines and stackless
features at application level.
- Have fun!
Location
--------
The sprint will be held wherever the PyCon sprints end up being held,
which i...
2010 Feb 17
0
[PATCH] Provides the new node lifecycle events.
...udi)
diff --git a/server/ovirtserver/initservice/tests.py b/server/ovirtserver/initservice/tests.py
new file mode 100755
index 0000000..2247054
--- /dev/null
+++ b/server/ovirtserver/initservice/tests.py
@@ -0,0 +1,23 @@
+"""
+This file demonstrates two different styles of tests (one doctest and one
+unittest). These will both pass when you run "manage.py test".
+
+Replace these with more appropriate tests for your application.
+"""
+
+from django.test import TestCase
+
+class SimpleTest(TestCase):
+ def test_basic_addition(self):
+ """...