Home
last modified time | relevance | path

Searched refs:NONEXISTENT_FILE (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython3/Lib/test/
Dtest_keyword.py17 NONEXISTENT_FILE = 'not_here.txt' variable
127 rc, stderr = self._generate_keywords(NONEXISTENT_FILE, KEYWORD_FILE)
129 self.assertRegex(stderr, b'(?ms)' + NONEXISTENT_FILE.encode())
132 rc, stderr = self._generate_keywords(os.devnull, NONEXISTENT_FILE)
134 self.assertRegex(stderr, b'(?ms)' + NONEXISTENT_FILE.encode())
/external/python/oauth2client/tests/
Dtest_clientsecrets.py35 NONEXISTENT_FILE = os.path.join( variable
220 clientsecrets._loadfile(NONEXISTENT_FILE)
222 self.assertEquals(exc_manager.exception.args[1], NONEXISTENT_FILE)
263 self.cache_mock.cache[NONEXISTENT_FILE] = {'web': 'secret info'}
266 NONEXISTENT_FILE, cache=self.cache_mock)