Home
last modified time | relevance | path

Searched refs:test_isfile (Results 1 – 4 of 4) sorted by relevance

/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
Dbase_unittest.py360 self.assertFalse(port.test_isfile('passes'))
361 self.assertTrue(port.test_isfile('passes/text.html'))
362 self.assertFalse(port.test_isfile('passes/does_not_exist.html'))
364 self.assertFalse(port.test_isfile('virtual'))
365 self.assertTrue(port.test_isfile('virtual/passes/text.html'))
366 self.assertFalse(port.test_isfile('virtual/does_not_exist.html'))
Dbase.py798 def test_isfile(self, test_name): member in Port
820 return self.test_isfile(test_name) or self.test_isdir(test_name)
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/
Dtest_expectations_unittest.py498 test_port.test_isfile = lambda test: True
516 test_port.test_isfile = lambda test: True
533 test_port.test_isfile = lambda test: True
553 test_port.test_isfile = lambda test: True
575 test_port.test_isfile = lambda test: True
593 test_port.test_isfile = lambda test: True
615 test_port.test_isfile = lambda test: True
637 test_port.test_isfile = lambda test: True
657 test_port.test_isfile = lambda test: True
Dtest_expectations.py134 expectation_line.is_file = self._port.test_isfile(expectation_line.name)