add some more tests (#3965)
This commit is contained in:
parent
afd52a87dd
commit
61332fdba1
11
tests/components/datadisplay/test_dataeditor.py
Normal file
11
tests/components/datadisplay/test_dataeditor.py
Normal file
@ -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
tests/components/recharts/test_polar.py
Normal file
38
tests/components/recharts/test_polar.py
Normal file
@ -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"
|
Loading…
Reference in New Issue
Block a user