Best Python code snippet using refurb_python
test_batch_parser.py
Source:test_batch_parser.py
...1209 ),1210 )1211 ],1212 )1213def test_parse_enable(assets: pathlib.Path) -> None:1214 workspace = assets1215 config_file = workspace / "batch-enable.yml"1216 flow = parse_batch(workspace, config_file)1217 assert flow == ast.BatchFlow(1218 Pos(0, 0, config_file),1219 Pos(11, 0, config_file),1220 id=SimpleOptIdExpr(1221 Pos(0, 0, config_file),1222 Pos(0, 0, config_file),1223 None,1224 ),1225 kind=ast.FlowKind.BATCH,1226 title=SimpleOptStrExpr(1227 Pos(0, 0, config_file),...
test_arg_parsing.py
Source:test_arg_parsing.py
...38 with pytest.raises(39 ValueError, match='refurb: missing argument after "--ignore"'40 ):41 parse_args(["--ignore"])42def test_parse_enable() -> None:43 got = parse_args(["--enable", "FURB123", "--enable", "321"])44 expected = Settings(enable=set((ErrorCode(123), ErrorCode(321))))45 assert got == expected46def test_parse_enable_check_missing_arg() -> None:47 with pytest.raises(48 ValueError, match='refurb: missing argument after "--enable"'49 ):50 parse_args(["--enable"])51def test_debug_parsing() -> None:52 assert parse_args(["--debug", "file"]) == Settings(53 files=["file"], debug=True54 )55def test_quiet_flag_parsing() -> None:56 assert parse_args(["--quiet", "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!!