gradio/test/components/test_markdown.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
866 B
Python
Raw Normal View History

import gradio as gr
class TestMarkdown:
def test_component_functions(self):
markdown_component = gr.Markdown("# Let's learn about $x$", label="Markdown")
assert markdown_component.get_config()["value"] == "# Let's learn about $x$"
assert not markdown_component.get_config()["show_copy_button"]
def test_in_interface(self):
"""
Interface, process
"""
iface = gr.Interface(lambda x: x, "text", "markdown")
input_data = " Here's an [image](https://gradio.app/images/gradio_logo.png)"
output_data = iface(input_data)
assert output_data == input_data.strip()
def test_show_copy_button(self):
markdown_component = gr.Markdown(
"# Let's learn about $x$", show_copy_button=True
)
assert markdown_component.get_config()["show_copy_button"]