| Index: appengine/predator/app/backend/handlers/test/analyze_crash_test.py
|
| diff --git a/appengine/predator/app/backend/handlers/test/analyze_crash_test.py b/appengine/predator/app/backend/handlers/test/analyze_crash_test.py
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..f1ca13da845a1df97032fdbbf55edd980094db26
|
| --- /dev/null
|
| +++ b/appengine/predator/app/backend/handlers/test/analyze_crash_test.py
|
| @@ -0,0 +1,15 @@
|
| +import webapp2
|
| +
|
| +from testing_utils import testing
|
| +
|
| +from backend.handlers import analyze_crash
|
| +
|
| +
|
| +class AnalyzeCrashTest(testing.AppengineTestCase):
|
| + app_module = webapp2.WSGIApplication([
|
| + ('/analyze-crash', analyze_crash.AnalyzeCrash),
|
| + ], debug=True)
|
| +
|
| + def testAnalyzeCrash(self):
|
| + response = self.test_app.get('/analyze-crash')
|
| + self.assertEquals(200, response.status_int)
|
|
|