project/kiwipycon/registration/tests.py
changeset 1 fda1c66b25f9
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/project/kiwipycon/registration/tests.py	Fri Oct 30 15:09:12 2009 +0530
@@ -0,0 +1,19 @@
+
+
+def test_save_to_pdf():
+    """
+    >>> from .pdf import save_invoice
+    >>> from django.db.models.loading import get_model
+    >>> userModel =  get_model('auth', 'user')
+    >>> user = userModel(username='joe', email='joe@gmail.com',
+    ...         first_name='Joe', last_name='Bloggs')
+    >>> user.save()
+    >>> regModel =  get_model('registration', 'registration')
+    >>> registration = regModel(registrant=user, amount=40,
+    ...          slug='NZPYCON-0001')
+    >>> registration.save()
+
+    >>> save_invoice(user, registration, 'registration/invoice.html')
+
+    """
+    pass