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

Side by Side Diff: appengine/components/components/ereporter2/handlers_test.py

Issue 1478573003: Symlink test_env.py instead of test_support in preparation of jinja2. (Closed) Base URL: git@github.com:luci/luci-py.git@2_jinja2
Patch Set: Rebased against master instead of jijna2 Created 5 years 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
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # Copyright 2014 The Swarming Authors. All rights reserved. 2 # Copyright 2014 The Swarming Authors. All rights reserved.
3 # Use of this source code is governed by the Apache v2.0 license that can be 3 # Use of this source code is governed by the Apache v2.0 license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 import datetime 6 import datetime
7 import json 7 import json
8 import logging 8 import logging
9 import re 9 import re
10 import sys 10 import sys
11 import unittest 11 import unittest
12 12
13 from test_support import test_env 13 import test_env
14 test_env.setup_test_env() 14 test_env.setup_test_env()
15 15
16 from google.appengine.api import logservice 16 from google.appengine.api import logservice
17 17
18 import webapp2 18 import webapp2
19 import webtest 19 import webtest
20 20
21 from components import auth 21 from components import auth
22 from components import template 22 from components import template
23 from components.ereporter2 import acl 23 from components.ereporter2 import acl
(...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after
330 self.assertEqual('1', response.body) 330 self.assertEqual('1', response.body)
331 self.assertEqual(0, models.Error.query().count()) 331 self.assertEqual(0, models.Error.query().count())
332 332
333 333
334 if __name__ == '__main__': 334 if __name__ == '__main__':
335 if '-v' in sys.argv: 335 if '-v' in sys.argv:
336 unittest.TestCase.maxDiff = None 336 unittest.TestCase.maxDiff = None
337 logging.basicConfig( 337 logging.basicConfig(
338 level=logging.DEBUG if '-v' in sys.argv else logging.ERROR) 338 level=logging.DEBUG if '-v' in sys.argv else logging.ERROR)
339 unittest.main() 339 unittest.main()
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698