mirror of
https://github.com/pyecharts/pyecharts.git
synced 2025-12-08 20:59:23 +00:00
11 lines
200 B
Python
11 lines
200 B
Python
from nose.tools import eq_
|
|
|
|
from pyecharts.charts import Liquid
|
|
|
|
|
|
def test_liquid_base():
|
|
c = Liquid().add("lq", [0.6, 0.7])
|
|
eq_(c.theme, "white")
|
|
eq_(c.renderer, "canvas")
|
|
c.render()
|