Best Python code snippet using tavern
test_excepthook.py
Source:test_excepthook.py
...36class TestExcepthookDefault(ExcepthookTestCase):37 """Test the default excepthook method"""38 def make_loop(self):39 return pyuv.Loop()40 def test_default_method(self):41 self.setup_idle(RuntimeError("Bad"))42 self.loop.run()43 self.assertOutput("(?s)^Unhandled exception in callback\n"44 "(Traceback.*\n)?RuntimeError: Bad\n$")45 self.assertNotIn('AttributeError', sys.stderr.getvalue())46class LoopNoExcepthook(pyuv.Loop):47 @property48 def excepthook(self):49 raise AttributeError("object has no attribute 'excepthook'")50class TestExcepthookMissing(TestExcepthookDefault):51 """Test a missing excepthook attribute"""52 def make_loop(self):53 return LoopNoExcepthook()54class TestExcepthookNone(TestExcepthookDefault):55 """Test setting excepthook to None"""56 def make_loop(self):57 loop = pyuv.Loop()58 loop.excepthook = None59 return loop60class LoopBadAttr(pyuv.Loop):61 @property62 def excepthook(self):63 raise TypeError("oops")64class TestExcepthookBadAttr(ExcepthookTestCase):65 """Test exception while retrieving the excepthook attribute"""66 def make_loop(self):67 return LoopBadAttr()68 def test_default_method(self):69 self.setup_idle(RuntimeError("Bad"))70 self.loop.run()71 self.assertOutput("(?s)^Exception while getting excepthook\n"72 "(Traceback.*\n)?TypeError: oops\n\n"73 "Unhandled exception in callback\n"74 "(Traceback.*\n)?RuntimeError: Bad\n$")75class TestExcepthookAttribute(ExcepthookTestCase):76 """Test setting Loop.excepthook as an instance attribute"""77 def make_loop(self):78 loop = pyuv.Loop()79 loop.excepthook = self.excepthook_cb80 return loop81 def test_no_exception(self):82 self.setup_idle()...
test_marc_ingester.py
Source:test_marc_ingester.py
...54class TestMARCUpdateLinkedClasses(unittest.TestCase):55 def setUp(self):56 self.entity = rdflib.URIRef("http://test.org/entity/1")57 self.ingester = marc.MARCIngester(record=pymarc.Record())58 def test_default_method(self):59 self.ingester.update_linked_classes(60 ingesters.ingester.NS_MGR.bf.Item,61 self.entity)62 def tearDown(self):63 pass64class TestMARCUpdateDirectProperties(unittest.TestCase):65 def setUp(self):66 self.entity = rdflib.URIRef("http://test.org/entity/1")67 self.ingester = marc.MARCIngester(record=pymarc.Record())68 def test_default_method(self):69 self.ingester.update_direct_properties(70 ingesters.ingester.NS_MGR.bf.Instance,71 self.entity)72class TestMARCUpdateOrderedLinkedClasses(unittest.TestCase):73 def setUp(self):74 self.entity = rdflib.URIRef("http://test.org/entity/1")75 self.ingester = marc.MARCIngester(record=pymarc.Record())76 77 def test_default_method(self):78 self.ingester.update_ordered_linked_classes(79 ingesters.ingester.NS_MGR.bf.Item,80 self.entity)81if __name__ == '__main__':82 unittest.main()...
test_dc_ingester.py
Source:test_dc_ingester.py
...42class TestDCUpdateLinkedClasses(unittest.TestCase):43 def setUp(self):44 self.entity = rdflib.URIRef("http://test.org/entity/1")45 self.ingester = dc.DCIngester(source=dc_fixure)46 def test_default_method(self):47 self.ingester.update_linked_classes(48 ingesters.ingester.NS_MGR.bf.Item,49 self.entity)50 def tearDown(self):51 pass52class TestDCUpdateDirectProperties(unittest.TestCase):53 def setUp(self):54 self.entity = rdflib.URIRef("http://test.org/entity/1")55 self.ingester = dc.DCIngester()56 def test_default_method(self):57 self.ingester.update_direct_properties(58 ingesters.ingester.NS_MGR.bf.Instance,59 self.entity)60class TestDCUpdateOrderedLinkedClasses(unittest.TestCase):61 def setUp(self):62 self.entity = rdflib.URIRef("http://test.org/entity/1")63 self.ingester = dc.DCIngester(source=dc_fixure)64 65 def test_default_method(self):66 self.ingester.update_ordered_linked_classes(67 ingesters.ingester.NS_MGR.bf.Item,68 self.entity)69if __name__ == '__main__':...
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!!