Searched refs:doc_name (Results 1 – 1 of 1) sorted by relevance
/hal_espressif-2.7.6/docs/test/ |
D | test_docs.py | 43 def assert_str_not_in_doc(self, doc_name, str_to_find): argument 44 with open(os.path.join(self.builder.html_out_dir, doc_name)) as f: 46 self.assertFalse(str_to_find in content, 'Found {} in {}'.format(str_to_find, doc_name)) 48 def assert_str_in_doc(self, doc_name, str_to_find): argument 49 with open(os.path.join(self.builder.html_out_dir, doc_name)) as f: 51 … self.assertTrue(str_to_find in content, 'Did not find {} in {}'.format(str_to_find, doc_name))
|