提交 9769033e 编写于 作者: HansBug's avatar HansBug 😆

dev(hansbug): fix bug in unittest

上级 0c7cbf0a
...@@ -9,13 +9,23 @@ import pytest ...@@ -9,13 +9,23 @@ import pytest
from click.testing import CliRunner from click.testing import CliRunner
from hbutils.testing import cmdv, OS from hbutils.testing import cmdv, OS
from treevalue import FastTreeValue, dump from treevalue import FastTreeValue, dump, graphics
from treevalue.entry.cli import treevalue_cli from treevalue.entry.cli import treevalue_cli
t1 = FastTreeValue({'a': 1, 'b': 2, 'x': {'c': 3, 'd': 4}}) t1 = FastTreeValue({'a': 1, 'b': 2, 'x': {'c': 3, 'd': 4}})
t2 = FastTreeValue({'a': 1, 'b': {2, 4}, 'x': {'c': [1, 3], 'd': 4}}) t2 = FastTreeValue({'a': 1, 'b': {2, 4}, 'x': {'c': [1, 3], 'd': 4}})
t3 = FastTreeValue({'a': 1, 'b': 2, 'x': {'c': t2.b, 'd': t2.x.c}}) t3 = FastTreeValue({'a': 1, 'b': 2, 'x': {'c': t2.b, 'd': t2.x.c}})
if cmdv('dot'):
g = graphics(
(t1, 't1'), (t2, 't2'), (t3, 't3'),
title='This is title for g.',
cfg=dict(bgcolor='#ffffff00'),
dup_value=(list,),
)
else:
g = None
@pytest.mark.unittest @pytest.mark.unittest
class TestEntryCliGraph: class TestEntryCliGraph:
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册