Best Python code snippet using tavern
test_fields.py
Source:test_fields.py
...38class TestDateField:39 field = api.DateField(required=True, nullable=False)40 def test_ok(self):41 assert self.field.validate('21.01.1970') is None42 def test_incorrect_value(self):43 with pytest.raises(ValidationError):44 self.field.validate('21011970')45class TestBirthDayField:46 field = api.BirthDayField(required=True, nullable=False)47 def test_ok(self):48 assert self.field.validate('21.01.1970') is None49 def test_incorrect_value(self):50 with pytest.raises(ValidationError):51 self.field.validate('21011970')52 def test_incorrect_age(self):53 with pytest.raises(ValidationError):54 self.field.validate('21.01.1800')55class TestGenderField:56 field = api.GenderField(required=True, nullable=False)57 def test_ok(self):58 assert self.field.validate(0) is None59 def test_incorrect_type(self):60 with pytest.raises(ValidationError):61 self.field.validate('1')62 def test_incorrect_value(self):63 with pytest.raises(ValidationError):64 self.field.validate(3)65class TestClientIDsField:66 field = api.ClientIDsField(required=True, nullable=False)67 def test_ok(self):68 assert self.field.validate([1, 2, 3, 4]) is None69 def test_incorrect_type(self):70 with pytest.raises(ValidationError):71 self.field.validate('1')72 def test_empty_list(self):73 with pytest.raises(ValidationError):74 self.field.validate([])75 def test_incorrect_value(self):76 with pytest.raises(ValidationError):77 self.field.validate([1, '2', 3, 'a'])78if __name__ == "__main__":...
validator_tests.py
Source:validator_tests.py
...58 }59 60 self.assertEqual(validate(args, accepts), output)61 62 def test_incorrect_value(self):63 'ÐевеÑное знаÑение'64 65 args = {66 'a': '-0.5',67 'b': '1',68 'c': {69 'd': '0',70 }71 }72 73 accepts = {74 'a': (rational, positive),75 'b': (integer, positive),76 'c': {...
test_utils_forcefields.py
Source:test_utils_forcefields.py
...6class TestForcefields(BaseTest):7 def test_nonetype(self):8 with pytest.raises(ValueError, match=r"Unexpected forcefield name"):9 load_ff()10 def test_incorrect_value(self):11 with pytest.raises(ValueError, match=r"Unexpected forcefield name"):12 load_ff(name="foo")13 @pytest.mark.parametrize(14 "ff_name", [("oplsaa"), ("trappe-ua"), ("spce"), ("benzene-ua")]15 )16 def test_correct_ff_names(self, ff_name):17 ff = load_ff(name=ff_name)...
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!!