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

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/android_unittest.py

Issue 2392683003: Remove TestWebKitPort from port_testcase. (Closed)
Patch Set: Rebased Created 4 years, 2 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
Index: third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/android_unittest.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/android_unittest.py b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/android_unittest.py
index a2573d93f2f1014c435452be5764b534fe258c5c..db851b0ff0f2ab23dd23c9c9dc6592929667dd56 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/android_unittest.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/android_unittest.py
@@ -196,6 +196,15 @@ class AndroidPortTest(port_testcase.PortTestCase):
self.assertEqual(self.make_port(options=optparse.Values({'configuration': 'Release'})).default_timeout_ms(), 10000)
self.assertEqual(self.make_port(options=optparse.Values({'configuration': 'Debug'})).default_timeout_ms(), 10000)
+ def test_path_to_apache_config_file(self):
+ port = self.make_port()
+ port._host_port.path_to_apache_config_file = lambda: '/host/apache/conf' # pylint: disable=protected-access
+ self.assertEqual(port.path_to_apache_config_file(), '/host/apache/conf')
+
+ def test_skipped_directories_for_symbols(self):
+ pass
+
+
class ChromiumAndroidDriverTest(unittest.TestCase):

Powered by Google App Engine
This is Rietveld 408576698