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

Unified Diff: tests/presubmit_unittest.py

Issue 10829293: Permit google app engine to be installed in testing_support. (Closed) Base URL: http://src.chromium.org/svn/trunk/tools/depot_tools/
Patch Set: Created 8 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « presubmit_support.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/presubmit_unittest.py
===================================================================
--- tests/presubmit_unittest.py (revision 151202)
+++ tests/presubmit_unittest.py (working copy)
@@ -1029,6 +1029,17 @@
(
[
# To be tested.
+ f('testing_support/google_appengine/b'),
+ f('testing_support/not_google_appengine/foo.cc'),
+ ],
+ [
+ # Expected.
+ 'testing_support/not_google_appengine/foo.cc',
+ ],
+ ),
+ (
+ [
+ # To be tested.
f('a/experimental/b'),
f('experimental/b'),
f('a/experimental'),
@@ -1089,7 +1100,7 @@
self.mox.ReplayAll()
self.assertEqual(len(input_api.DEFAULT_WHITE_LIST), 22)
- self.assertEqual(len(input_api.DEFAULT_BLACK_LIST), 11)
+ self.assertEqual(len(input_api.DEFAULT_BLACK_LIST), 12)
for item in files:
results = filter(input_api.FilterSourceFile, item[0])
for i in range(len(results)):
« no previous file with comments | « presubmit_support.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698