my_gradio / test /components /test_button.py
xray918's picture
Upload folder using huggingface_hub
0ad74ed verified
raw
history blame
188 Bytes
import gradio as gr
class TestButton:
def test_postprocess(self):
assert gr.Button().postprocess("5") == "5"
assert gr.Button().postprocess(5) == "5" # type: ignore