mirror of https://github.com/mahmoud/boltons.git
27 lines
544 B
Python
27 lines
544 B
Python
from pickle import loads, dumps
|
|
|
|
from boltons.namedutils import namedlist, namedtuple
|
|
|
|
Point = namedtuple('Point', 'x, y', rename=True)
|
|
MutablePoint = namedlist('MutablePoint', 'x, y', rename=True)
|
|
|
|
|
|
def test_namedlist():
|
|
p = MutablePoint(x=10, y=20)
|
|
|
|
assert p == [10, 20]
|
|
p[0] = 11
|
|
assert p == [11, 20]
|
|
p.x = 12
|
|
assert p == [12, 20]
|
|
|
|
|
|
def test_namedlist_pickle():
|
|
p = MutablePoint(x=10, y=20)
|
|
assert p == loads(dumps(p))
|
|
|
|
|
|
def test_namedtuple_pickle():
|
|
p = Point(x=10, y=20)
|
|
assert p == loads(dumps(p))
|