Best Python code snippet using tavern
chap8_classes_objects.py
Source:chap8_classes_objects.py
...25 if code == '':26 code = 'ymd'27 fmt = _formats[code]28 return fmt.format(d=self)29def test_custom_format():30 d = Date(2012, 12, 21)31 print(format(d))32 print(format(d, 'mdy'))33 print('The date is {:ymd}'.format(d))34 print('The date is {:mdy}'.format(d))35class LazyConnection:36 def __init__(self, address, family=AF_INET, type=SOCK_STREAM):37 self.address = address38 self.family = family39 self.type = type40 self.connections = []41 def __enter__(self):42 sock = socket(self.family, self.type)43 sock.connect(self.address)44 self.connections.append(sock)45 return sock46 def __exit__(self, exc_ty, exc_val, tb):47 self.connections.pop().close()48def test_lazy_connect():49 conn = LazyConnection(('www.python.org', 80))50 with conn as s1:51 pass52 with conn as s2:53 pass54# create managed attributes55class Person:56 def __init__(self, first_name):57 # Here, use first_name instead of _first_name is because58 # when init, the type check will also be applied. If use59 # _first_name, the type check will be bypassed60 self.first_name = first_name61 # Getter function62 @property63 def first_name(self):64 return self._first_name65 # Setter function66 @first_name.setter67 def first_name(self, value):68 if not isinstance(value, str):69 raise TypeError('Expected a string')70 self._first_name = value71 # Deleter function (optional)72 @first_name.deleter73 def first_name(self):74 raise AttributeError("Can't delete attribute")75def test_manage_attribute():76 b = Person(42)77 a = Person('Guido')78 print(a.first_name)79 a.first_name = 4280 del a.first_name81class Circle:82 def __init__(self, radius):83 self.radius = radius84 @property85 def area(self):86 return math.pi * self.radius ** 287 @property88 def perimeter(self):89 return 2 * math.pi * self.radius90 91def test_define_computed_attributes():92 c = Circle(4.0)93 print(c.radius)94 print(c.area) # Notice lack of ()95 print(c.perimeter) # Notice lack of ()96def main():97 test_custom_format()98 # test_manage_attribute()99 test_define_computed_attributes()100if __name__=='__main__':...
test_parser.py
Source:test_parser.py
...21 line = '127.0.0.1 - - [03/Dec/2013:16:29:19 +0700]'22 parser = Parser(format_="random_format")23 # failed operation returns a ``None``24 assert parser.parse(line) is None25def test_custom_format():26 line = "127.0.0.1 -"27 parser = Parser(format_='(?P<remote>[^ ]*) (?P<host>[^ ]*)')28 parsed_line = parser.parse(line)29 assert parsed_line["remote"] == "127.0.0.1"...
format_test.py
Source:format_test.py
...12 if code == '':13 code = 'ymd'14 fmt = _formats[code]15 return fmt.format(d=self)16def test_custom_format():17 d = Date(2012, 12, 21)...
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!!