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

Side by Side Diff: chrome/test/functional/ispy/server/app.py

Issue 222873002: Remove pyauto tests. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: sync Created 6 years, 8 months 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 # Copyright 2013 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 import os
6 import sys
7 import webapp2
8
9 sys.path.append(os.path.join(os.path.dirname(__file__), os.pardir))
10 import debug_view_handler
11 import image_handler
12 import main_view_handler
13 import rebaseline_handler
14 import update_mask_handler
15
16
17 application = webapp2.WSGIApplication(
18 [('/update_mask', update_mask_handler.UpdateMaskHandler),
19 ('/rebaseline', rebaseline_handler.RebaselineHandler),
20 ('/debug_view', debug_view_handler.DebugViewHandler),
21 ('/image', image_handler.ImageHandler),
22 ('/', main_view_handler.MainViewHandler)], debug=True)
OLDNEW
« no previous file with comments | « chrome/test/functional/ispy/ispy_api_unittest.py ('k') | chrome/test/functional/ispy/server/debug_view_handler.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698