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

Function test_binop_string

tests/test_ast_rewrite.py:52–58  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

50
51
52def test_binop_string():
53 src = """
54 "hello_" + "world"
55 """
56 tree = process_source_code(src)
57 assert isinstance(tree, String)
58 assert str(tree) == "hello_world"
59
60
61def test_binop_numbers():

Callers

nothing calls this directly

Calls 1

process_source_codeFunction · 0.85

Tested by

no test coverage detected