Best Python code snippet using lemoncheesecake
test_mongo.py
Source:test_mongo.py
...6 pass7 def get_collection(self, input1):8 # return fixed list for demo9 return [1, 3, 5]10 def from_report(self, input_a, input_b):11 collection_a = self.get_collection(input_a)12 collection_b = self.get_collection(input_b)13 return collection_a + collection_b14class TestMongo(unittest.TestCase):15 def setUp(self):16 self.expected = [2, 4, 6, 2, 4, 6]17 self.mock_value = [2, 4, 6]18 def tearDown(self):19 pass20 @mock.patch("nose_tests.tests.test_mongo.Mongo.get_collection")21 def test_using_mock_patch(self, mock_get_collection):22 """23 the patch is in the format of file_name.class_name.method_name24 If the class being patched is the in same file, without quote?!25 patch.object with a class name without quote, a simple patch will always require quote26 """27 mock_get_collection.return_value = self.mock_value28 mongo = Mongo()29 mongo.get_collection = mock_get_collection30 result = mongo.from_report('any', 'where')31 self.assertEquals(result, self.expected)32 # mock.MagicMock33 def test_mongo_get_collection_using_magicMock(self):34 mock_mongo = mock.MagicMock(name='get_collection')35 mock_mongo.get_collection.return_value = self.mock_value36 mongo = Mongo()37 mongo.get_collection = mock_mongo.get_collection38 result = mongo.from_report('any', 'where')39 self.assertEquals(result, self.expected)40 # mock.Mock41 def test_mongo_get_collection_using_Mock(self):42 mock_mongo = mock.Mock(name='get_collection')43 mock_mongo.get_collection.return_value = self.mock_value44 mongo = Mongo()45 mongo.get_collection = mock_mongo.get_collection46 result = mongo.from_report('any', 'where')...
hr_expense_sheet.py
Source:hr_expense_sheet.py
1# Copyright 2019 Ecosoft Co., Ltd (http://ecosoft.co.th/)2# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html)3from odoo import api, models4class HrExpenseSheet(models.Model):5 _inherit = 'hr.expense.sheet'6 _rec_name = 'number'7 @api.model8 def create(self, vals):9 if 'expense_line_ids' in vals.keys():10 from_expense = vals['expense_line_ids'][0][1]11 if from_expense:12 expense = self.env['hr.expense'].browse(from_expense)13 else:14 from_report = vals['expense_line_ids'][0][2][0]15 expense = self.env['hr.expense'].browse(from_report)16 if vals.get('number', '/') == '/' and expense.advance:17 number = self.env['ir.sequence'].next_by_code(18 'hr.expense.sheet.advance')19 vals['number'] = number...
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!!