mirror of
https://github.com/pyecharts/pyecharts.git
synced 2025-12-08 20:59:23 +00:00
12 lines
289 B
Python
12 lines
289 B
Python
from nose.tools import eq_
|
|
|
|
from example.commons import Faker
|
|
from pyecharts.charts import EffectScatter
|
|
|
|
|
|
def test_effectscatter_base():
|
|
c = EffectScatter().add_xaxis(Faker.choose()).add_yaxis("", Faker.values())
|
|
eq_(c.theme, "white")
|
|
eq_(c.renderer, "canvas")
|
|
c.render()
|