blob: 11ff513cbcba4ebd271bd6564b76ba20ea92f2e0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
import pytest
from pyrsistent import immutable
class Empty(immutable(verbose=True)):
pass
class Single(immutable('x')):
pass
class FrozenMember(immutable('x, y_')):
pass
class DerivedWithNew(immutable(['x', 'y'])):
def __new__(cls, x, y):
return super(DerivedWithNew, cls).__new__(cls, x, y)
def test_instantiate_object_with_no_members():
t = Empty()
t2 = t.set()
assert t is t2
def test_assign_non_existing_attribute():
t = Empty()
with pytest.raises(AttributeError):
t.set(a=1)
def test_basic_instantiation():
t = Single(17)
assert t.x == 17
assert str(t) == 'Single(x=17)'
def test_cannot_modify_member():
t = Single(17)
with pytest.raises(AttributeError):
t.x = 18
def test_basic_replace():
t = Single(17)
t2 = t.set(x=18)
assert t.x == 17
assert t2.x == 18
def test_cannot_replace_frozen_member():
t = FrozenMember(17, 18)
with pytest.raises(AttributeError):
t.set(y_=18)
def test_derived_class_with_new():
d = DerivedWithNew(1, 2)
d2 = d.set(x=3)
assert d2.x == 3
|