Best Python code snippet using autotest_python
enum.py
Source:enum.py
...36 value = name37 else:38 value = i * step + start_value39 self.values.append(value)40 setattr(self, self.get_attr_name(name), value)41 @staticmethod42 def get_attr_name(string):43 return string.upper().replace(' ', '_')44 def choices(self):45 'Return choice list suitable for Django model choices.'46 return zip(self.values, self.names)47 def get_value(self, name):48 """\49 Convert a string name to it's corresponding value. If a value50 is passed in, it is returned.51 """52 if isinstance(name, (int, long)) and not self.string_values:53 # name is already a value54 return name55 return getattr(self, self.get_attr_name(name))56 def get_string(self, value):57 ' Given a value, get the string name for it.'58 if value not in self.values:59 raise ValueError('Value %s not in this enum' % value)60 index = self.values.index(value)...
source_visitor.py
Source:source_visitor.py
...7 defaults = args.defaults8 for arg in args.args:9 arg_names += [arg.arg]10 return (arg_names, len(defaults))11def get_attr_name(node):12 if isinstance(node, ast.Call):13 return get_attr_name(node.func)14 if isinstance(node, ast.Name):15 return node.id16 elif isinstance(node, ast.Attribute):17 return get_attr_name(node.value) + "." + node.attr18 elif isinstance(node, ast.Subscript):19 return ""20 return ""21class SourceVisitor(ast.NodeVisitor):22 def __init__(self):23 self.result = {}24 self.pair = {}25 def visit_FunctionDef(self, node):26 kw_names = get_keywords(node)27 self.result[node.name] = kw_names28 return node29 def visit_ClassDef(self, node):30 visitor = ClassVisitor()31 visitor.visit(node)32 if len(node.bases)>0:33 base_node = node.bases[0]34 if hasattr(base_node, "id"):35 base_class_name = base_node.id36 else:37 base_class_name = get_attr_name(base_node)38 self.pair[node.name] = base_class_name39 else:40 self.pair[node.name] = None41 self.result[node.name] = visitor.result...
util_test.py
Source:util_test.py
...7 assert get_output_type(10) == "int"8 assert get_output_type([10, 20, 30]) == "list"9 assert get_output_type({"testkey": "testvalue"}) == "dict"10 assert get_output_type(True) == "bool"11def test_get_attr_name():12 assert get_attr_name("app.tf2project.io/name") == "app_tf2project_io_name"13 assert get_attr_name("test_key") == "test_key"...
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!!