From e9ed5af643f96f92f2a9e97c3b751efff8727b6d Mon Sep 17 00:00:00 2001 From: Madhusudan.C.S Date: Tue, 13 Jul 2010 17:59:47 +0530 Subject: Moved the files to new Django app named scipycon and modified settings. --- project/kiwipycon/registration/tests.py | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 project/kiwipycon/registration/tests.py (limited to 'project/kiwipycon/registration/tests.py') diff --git a/project/kiwipycon/registration/tests.py b/project/kiwipycon/registration/tests.py deleted file mode 100644 index 0ea28b2..0000000 --- a/project/kiwipycon/registration/tests.py +++ /dev/null @@ -1,19 +0,0 @@ - - -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 -- cgit