瀏覽代碼

add some more tests (#3965)

Thomas Brandého 8 月之前
父節點
當前提交
61332fdba1
共有 2 個文件被更改,包括 49 次插入0 次删除
  1. 11 0
      tests/components/datadisplay/test_dataeditor.py
  2. 38 0
      tests/components/recharts/test_polar.py

+ 11 - 0
tests/components/datadisplay/test_dataeditor.py

@@ -0,0 +1,11 @@
+from reflex.components.datadisplay.dataeditor import DataEditor
+
+
+def test_dataeditor():
+    editor_wrapper = DataEditor.create().render()
+    editor = editor_wrapper["children"][0]
+    assert editor_wrapper["name"] == "div"
+    assert editor_wrapper["props"] == [
+        'css={({ ["width"] : "100%", ["height"] : "100%" })}'
+    ]
+    assert editor["name"] == "DataEditor"

+ 38 - 0
tests/components/recharts/test_polar.py

@@ -0,0 +1,38 @@
+from reflex.components.recharts import (
+    Pie,
+    PolarAngleAxis,
+    PolarGrid,
+    PolarRadiusAxis,
+    Radar,
+    RadialBar,
+)
+
+
+def test_pie():
+    pie = Pie.create().render()
+    assert pie["name"] == "RechartsPie"
+
+
+def test_radar():
+    radar = Radar.create().render()
+    assert radar["name"] == "RechartsRadar"
+
+
+def test_radialbar():
+    radialbar = RadialBar.create().render()
+    assert radialbar["name"] == "RechartsRadialBar"
+
+
+def test_polarangleaxis():
+    polarangleaxis = PolarAngleAxis.create().render()
+    assert polarangleaxis["name"] == "RechartsPolarAngleAxis"
+
+
+def test_polargrid():
+    polargrid = PolarGrid.create().render()
+    assert polargrid["name"] == "RechartsPolarGrid"
+
+
+def test_polarradiusaxis():
+    polarradiusaxis = PolarRadiusAxis.create().render()
+    assert polarradiusaxis["name"] == "RechartsPolarRadiusAxis"