I had GaeUnit working on Rietveld (à la Guido...), the test:

import unittest
from django.test.client import Client

class Test(unittest.TestCase):

    def testDjango(self):
        c = Client()
        response = c.get('/code')
        self.failUnlessEqual(response.status_code, 200)
        self.failIf(not ('SERVER' in response.content))

passed, not possible (for me) to 'from django.test import TestCase'
only from unittest.

But it is not out of the box! You should search a lot by yourself...

I will continue to investigate...
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to