Skip to content

Commit ba1a3ec

Browse files
committed
And add a test for new classes added without being specified in allowed_attrs
1 parent 8b9364a commit ba1a3ec

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

test_simpleeval.py

+9
Original file line numberDiff line numberDiff line change
@@ -1397,6 +1397,15 @@ class Foo:
13971397
simple_eval("foo.hidden", names={"foo": Foo()}, allowed_attrs=extended_attrs), 42
13981398
)
13991399

1400+
def test_disallowed_types(self):
1401+
class Foo:
1402+
bar = 42
1403+
1404+
assert Foo().bar == 42
1405+
1406+
with self.assertRaises(FeatureNotAvailable):
1407+
simple_eval("foo.bar", names={"foo": Foo()}, allowed_attrs=BASIC_ALLOWED_ATTRS)
1408+
14001409
def test_breakout_via_generator(self):
14011410
# Thanks decorator-factory
14021411
class Foo:

0 commit comments

Comments
 (0)