Best Python code snippet using localstack_python
test_common.py
Source:test_common.py  
...275        self.assertEqual("12.521", fn(12.521, decimals=3))276        self.assertEqual("12.521", fn(12.521, decimals=4))277        self.assertEqual("-12.521", fn(-12.521, decimals=4))278        self.assertEqual("-1223.4354", fn(-1.2234354123e3, decimals=4))279    def test_cleanup_threads_and_processes_calls_shutdown_hooks(self):280        # TODO: move all run/concurrency related tests into separate class281        started = threading.Event()282        done = threading.Event()283        def run_method(*args, **kwargs):284            started.set()285            func_thread = kwargs["_thread"]286            # thread waits until it is stopped287            func_thread._stop_event.wait()288            done.set()289        common.start_thread(run_method)290        self.assertTrue(started.wait(timeout=2))291        common.cleanup_threads_and_processes()292        self.assertTrue(done.wait(timeout=2))293class TestCommandLine(unittest.TestCase):...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!!
