Best Python code snippet using localstack_python
test_common.py
Source:test_common.py
...205 self.assertEqual("FooBarEd", fn("foo_bar_ed"))206 self.assertEqual("FooBar", fn("foo_bar"))207 self.assertEqual("FooBar", fn("foo__bar"))208 self.assertEqual("FooBAR", fn("foo_b_a_r"))209 def test_obj_to_xml(self):210 fn = common.obj_to_xml211 # primitive212 self.assertEqual("42", fn(42))213 self.assertEqual("False", fn(False))214 self.assertEqual("a", fn("a"))215 # dict only216 self.assertEqual("<foo>bar</foo>", fn({"foo": "bar"}))217 self.assertEqual("<a>42</a>", fn({"a": 42}))218 self.assertEqual("<a>42</a><foo>bar</foo>", fn({"a": 42, "foo": "bar"}))219 # list of dicts220 self.assertEqual("<a>42</a><a>43</a>", fn([{"a": 42}, {"a": 43}]))221 # dict with lists222 self.assertEqual("<f><a>42</a><a>43</a></f>", fn({"f": [{"a": 42}, {"a": 43}]}))223 # empty types...
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!!