Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(82)

Side by Side Diff: appengine/predator/app/frontend/handlers/test/report_crash_test.py

Issue 2447253002: [Findit & Predator] Code reorg of Findit. (Closed)
Patch Set: Clean up. Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 import webapp2
2
3 from testing_utils import testing
4
5 from frontend.handlers import report_crash
6
7
8 class ReportCrashTest(testing.AppengineTestCase):
9 app_module = webapp2.WSGIApplication([
10 ('/report-crash', report_crash.ReportCrash),
11 ], debug=True)
12
13 def testGetVersion(self):
14 response = self.test_app.get('/report-crash')
15 self.assertEquals(200, response.status_int)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698