| Index: third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/base_unittest.py
|
| diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/base_unittest.py b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/base_unittest.py
|
| index d618849b704fa26dba9ad7c707fad38015159e33..5a3f1ad452a15b96b638e181e62caf71c830a6e6 100644
|
| --- a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/base_unittest.py
|
| +++ b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/base_unittest.py
|
| @@ -446,6 +446,11 @@ class PortTest(unittest.TestCase):
|
| port = self.make_port()
|
| self.assertRaises(AssertionError, port.virtual_test_suites)
|
|
|
| + def test_is_wpt_test(self):
|
| + port = self.make_port()
|
| + self.assertTrue(port.is_wpt_test('imported/wpt/foo/bar.html'))
|
| + self.assertFalse(port.is_wpt_test('http/wpt/foo.html'))
|
| +
|
|
|
| class NaturalCompareTest(unittest.TestCase):
|
|
|
|
|