22 lines
737 B
Python
22 lines
737 B
Python
from reflex.components.radix.primitives.form import Form
|
|
from reflex.event import EventChain
|
|
from reflex.ivars.base import ImmutableVar
|
|
|
|
|
|
def test_render_on_submit():
|
|
"""Test that on_submit event chain is rendered as a separate function."""
|
|
submit_it = ImmutableVar(
|
|
_var_name="submit_it",
|
|
_var_type=EventChain,
|
|
)
|
|
f = Form.create(on_submit=submit_it)
|
|
exp_submit_name = f"handleSubmit_{f.handle_submit_unique_name}" # type: ignore
|
|
assert f"onSubmit={{{exp_submit_name}}}" in f.render()["props"]
|
|
|
|
|
|
def test_render_no_on_submit():
|
|
"""A form without on_submit should not render a submit handler."""
|
|
f = Form.create()
|
|
for prop in f.render()["props"]:
|
|
assert "onSubmit" not in prop
|