mirror of
https://github.com/aykhans/AzSuicideDataVisualization.git
synced 2025-04-22 10:28:02 +00:00
17 lines
274 B
Python
17 lines
274 B
Python
from ..bunch import Bunch
|
|
|
|
|
|
def test_bunch():
|
|
b = Bunch(x=5, y=10)
|
|
assert "y" in b
|
|
assert "x" in b
|
|
assert b.x == 5
|
|
b["a"] = "hi"
|
|
assert b.a == "hi"
|
|
|
|
|
|
def test_bunch_dir():
|
|
b = Bunch(x=5, y=10)
|
|
assert "x" in dir(b)
|
|
assert "keys" in dir(b)
|