File size: 195 Bytes
0bd62e5
 
 
 
 
 
 
1
2
3
4
5
6
7
8
import gradio as gr


class TestButton:
    def test_postprocess(self):
        assert gr.Button().postprocess("5") == "5"
        assert gr.Button().postprocess(5) == "5"  # type: ignore