mirror of
https://github.com/aykhans/AzSuicideDataVisualization.git
synced 2025-07-03 06:31:28 +00:00
first commit
This commit is contained in:
@ -0,0 +1,40 @@
|
||||
# Copyright (c) Jupyter Development Team.
|
||||
# Distributed under the terms of the Modified BSD License.
|
||||
|
||||
from traitlets import Bool, Tuple, List
|
||||
|
||||
from .utils import setup, teardown, DummyComm
|
||||
|
||||
from ..widget import Widget
|
||||
|
||||
from ..._version import __control_protocol_version__
|
||||
|
||||
# A widget with simple traits
|
||||
class SimpleWidget(Widget):
|
||||
a = Bool().tag(sync=True)
|
||||
b = Tuple(Bool(), Bool(), Bool(), default_value=(False, False, False)).tag(sync=True)
|
||||
c = List(Bool()).tag(sync=True)
|
||||
|
||||
def test_empty_send_state():
|
||||
w = SimpleWidget()
|
||||
w.send_state([])
|
||||
assert w.comm.messages == []
|
||||
|
||||
def test_empty_hold_sync():
|
||||
w = SimpleWidget()
|
||||
with w.hold_sync():
|
||||
pass
|
||||
assert w.comm.messages == []
|
||||
|
||||
|
||||
def test_control():
|
||||
comm = DummyComm()
|
||||
Widget.close_all()
|
||||
w = SimpleWidget()
|
||||
Widget.handle_control_comm_opened(
|
||||
comm, dict(metadata={'version': __control_protocol_version__})
|
||||
)
|
||||
Widget._handle_control_comm_msg(dict(content=dict(
|
||||
data={'method': 'request_states'}
|
||||
)))
|
||||
assert comm.messages
|
Reference in New Issue
Block a user