MCPcopy Create free account
hub / github.com/SourceCode-AI/aura / test_binop_string_vars

Function test_binop_string_vars

tests/test_ast_rewrite.py:70–78  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

68
69
70def test_binop_string_vars():
71 src = """
72 x = "hello_"
73 y = "world"
74 x + y
75 """
76 tree = process_source_code(src)
77 assert isinstance(tree, String)
78 assert str(tree) == "hello_world"
79
80
81@pytest.mark.parametrize(

Callers

nothing calls this directly

Calls 1

process_source_codeFunction · 0.85

Tested by

no test coverage detected