Best Python code snippet using tavern
test_conf.py
Source:test_conf.py
...37 [loosingspree_messages]38 7: Keep it up %player%, it will come eventually # You're back in business %player%39 """))40 self.assertListEqual([], self.p.warning.mock_calls)41 def test_no_message(self):42 self.init(dedent("""43 [settings]44 reset_spree: yes45 [killingspree_messages]46 [loosingspree_messages]47 7: Keep it up %player%, it will come eventually # You're back in business %player%48 """))49 self.assertListEqual([], self.p.warning.mock_calls)50 def test_missing_dash(self):51 self.init(dedent("""52 [settings]53 reset_spree: yes54 [killingspree_messages]55 # The # character splits the 'start' spree from the 'end' spree.56 5: foo57 [loosingspree_messages]58 7: Keep it up %player%, it will come eventually # You're back in business %player%59 """))60 self.assertListEqual([call("ignoring killingspree message 'foo' due to missing '#'")],61 self.p.warning.mock_calls)62class Test_loosingspree_messages(SpreeTestCase):63 def setUp(self):64 SpreeTestCase.setUp(self)65 self.p.warning = Mock()66 def test_nominal(self):67 self.init(dedent("""68 [settings]69 reset_spree: yes70 [killingspree_messages]71 [loosingspree_messages]72 # The # character splits the 'start' spree from the 'end' spree.73 7: Keep it up %player%, it will come eventually # You're back in business %player%74 """))75 self.assertListEqual([], self.p.warning.mock_calls)76 def test_no_message(self):77 self.init(dedent("""78 [settings]79 reset_spree: yes80 [killingspree_messages]81 [loosingspree_messages]82 """))83 self.assertListEqual([], self.p.warning.mock_calls)84 def test_missing_dash(self):85 self.init(dedent("""86 [settings]87 reset_spree: yes88 [killingspree_messages]89 [loosingspree_messages]90 # The # character splits the 'start' spree from the 'end' spree....
progressbar_update.py
Source:progressbar_update.py
...39 self.msg = "TEST BAR"40 self.width = 2041 self.progress_sym = "#"42 self.empty_sym = " "43 def test_no_message(self):44 """Function: test_no_message45 Description: Test with no message passed.46 Arguments:47 """48 bar = gen_class.ProgressBar(None, self.width, self.progress_sym,49 self.empty_sym)50 with gen_libs.no_std_out():51 self.assertFalse(bar.update(50))52 def test_zero_percent(self):53 """Function: test_zero_percent54 Description: Test update method with zero percent completed.55 Arguments:56 """57 bar = gen_class.ProgressBar(self.msg, self.width, self.progress_sym,...
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!!