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

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/w3c/test_copier_unittest.py

Issue 2790723002: Stop trying to convert CSS properties in imported tests. (Closed)
Patch Set: Created 3 years, 9 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 | « third_party/WebKit/Tools/Scripts/webkitpy/w3c/test_copier.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Tools/Scripts/webkitpy/w3c/test_copier_unittest.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/w3c/test_copier_unittest.py b/third_party/WebKit/Tools/Scripts/webkitpy/w3c/test_copier_unittest.py
index ecf8f1e0756cc846f700d1ec2615a70244e81245..238d15fc726d0c2a1523f8be321fb56993cc7463 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/w3c/test_copier_unittest.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/w3c/test_copier_unittest.py
@@ -140,24 +140,3 @@ class TestCopierTest(LoggingTestCase):
'WARNING: Skipping: /blink/w3c/dir1/my-ref-test.html\n',
'WARNING: Reason: Ref file "/blink/w3c/dir1/not-here.html" was not found.\n'
])
-
- def test_should_try_to_convert_positive_cases(self):
- self.assertTrue(TestCopier.should_try_to_convert({}, 'foo.css', 'LayoutTests/external/wpt/css/x'))
- self.assertTrue(TestCopier.should_try_to_convert({}, 'foo.htm', 'LayoutTests/external/wpt/css/x'))
- self.assertTrue(TestCopier.should_try_to_convert({}, 'foo.html', 'LayoutTests/external/wpt/css/x'))
- self.assertTrue(TestCopier.should_try_to_convert({}, 'foo.xht', 'LayoutTests/external/wpt/css/x'))
- self.assertTrue(TestCopier.should_try_to_convert({}, 'foo.xhtml', 'LayoutTests/external/wpt/css/x'))
-
- def test_should_not_try_to_convert_js_test(self):
- self.assertFalse(TestCopier.should_try_to_convert({'is_jstest': True}, 'foo.html', 'LayoutTests/external/wpt/css/x'))
-
- def test_should_not_try_to_convert_test_in_wpt(self):
- self.assertFalse(TestCopier.should_try_to_convert({}, 'foo.html', 'LayoutTests/external/wpt/foo'))
-
- def test_should_not_try_to_convert_other_file_types(self):
- self.assertFalse(TestCopier.should_try_to_convert({}, 'foo.bar', 'LayoutTests/external/wpt/css/x'))
- self.assertFalse(TestCopier.should_try_to_convert({}, 'foo.js', 'LayoutTests/external/wpt/css/x'))
- self.assertFalse(TestCopier.should_try_to_convert({}, 'foo.md', 'LayoutTests/external/wpt/css/x'))
- self.assertFalse(TestCopier.should_try_to_convert({}, 'foo.png', 'LayoutTests/external/wpt/css/x'))
- self.assertFalse(TestCopier.should_try_to_convert({}, 'foo.svg', 'LayoutTests/external/wpt/css/x'))
- self.assertFalse(TestCopier.should_try_to_convert({}, 'foo.svgz', 'LayoutTests/external/wpt/css/x'))
« no previous file with comments | « third_party/WebKit/Tools/Scripts/webkitpy/w3c/test_copier.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698