Best Python code snippet using tavern
test_utilities.py
Source:test_utilities.py
...282 recurse_access_key(nested_data, old_query)283 new_val = recurse_access_key(nested_data, new_query)284 assert new_val == expected_data285 @pytest.mark.parametrize("new_query", ("f", "a[3]", "a[1].x"))286 def test_missing_search(self, nested_data, new_query):287 """Searching for data not in given data returns None, because of the way the jmespath library works..."""288 assert recurse_access_key(nested_data, new_query) is None289class TestLoadCfg:290 def test_load_one(self):291 example = {"a": "b"}292 with wrapfile(example) as f:293 assert example == load_single_document_yaml(f)294 def test_load_multiple_fails(self):295 example = [{"a": "b"}, {"c": "d"}]296 with tempfile.NamedTemporaryFile(suffix=".yaml", delete=False) as wrapped_tmp:297 # put into a file298 dumped = yaml.dump_all(example)299 wrapped_tmp.write(dumped.encode("utf8"))300 wrapped_tmp.close()...
704_binary_search.py
Source:704_binary_search.py
...19class TestSolution(unittest.TestCase):20 def test_successful_search(self):21 numbers = [-1, 0, 3, 5, 9, 12]22 self.assertEqual(Solution().search(numbers, 9), 4)23 def test_missing_search(self):24 numbers = [-1, 0, 3, 5, 9, 12]25 self.assertEqual(Solution().search(numbers, 2), -1)26 def test_searching_single_value_list(self):27 numbers = [5]...
Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!