How do I set up gaeunit 2.0a with my Django app?
Posted
by J. Frankenstein
on Stack Overflow
See other posts from Stack Overflow
or by J. Frankenstein
Published on 2010-06-16T19:19:51Z
Indexed on
2010/06/16
19:22 UTC
Read the original article
Hit count: 140
I am trying to set up Google App Engine unit testing for my web application. I downloaded the file from here.
I followed the instructions in the readmen by copying the directory gaeunit into the directory with the rest of my apps and registering 'gaeunit' in settings.py. This didn't seem sufficient to actually get things going. I also stuck url('^test(.*)', include('gaeunit.urls'))
into my urls.py file.
When I go to the url http://localhost:8000/test
, I get the following error:
[Errno 2] No such file or directory: '../../gaeunit/test'
Any suggestions? I'm not sure what I've done wrong. Thanks!
© Stack Overflow or respective owner