Best Python code snippet using refurb_python
test_arg_parsing.py
Source:test_arg_parsing.py
...187 assert config_file == Settings(188 enable=set((ErrorCode(222),)),189 disable=set((ErrorCode(111), ErrorCode(333), ErrorCode(444))),190 )191def test_disable_cli_arg_overrides_config_file() -> None:192 contents = """\193[tool.refurb]194enable = ["FURB111", "FURB222", "FURB333"]195disable = ["FURB111", "FURB444"]196"""197 config_file = parse_config_file(contents)198 command_line_args = parse_args(["--disable", "FURB333"])199 merged = Settings.merge(config_file, command_line_args)200 assert merged == Settings(201 enable=set((ErrorCode(222),)),202 disable=set((ErrorCode(111), ErrorCode(333), ErrorCode(444))),203 )204def test_disable_all_flag_parsing() -> None:205 assert parse_args(["--disable-all", "file"]) == Settings(...
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!!