It seems that they are some conceptual incompatibilities between GAE, GaeUnit and what I would have prefered:
1) It seems me at bit crazy to upload the tests directories to GAE if I only use them in local... 2) Inside GAE, you do not have access to file outside what is uploaded 3) GAEUnit execute the tests inside GAE... (by way of a django app) Well, it's more easy if you accept to upload all your test stuff to GAE... But I will still try a bit to find a way to test with tests outside of GAE?? On Jun 26, 9:15 pm, Michelschr <[email protected]> wrote: > 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 [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en -~----------~----~----~----~------~----~------~--~---
