We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1350d8 commit 761133fCopy full SHA for 761133f
unittests/test_non_copyable_recursive.py
@@ -39,6 +39,7 @@ def test_infinite_recursion_base_classes(self):
39
test_ns = global_ns.namespace('Test1')
40
cls = test_ns.class_('Child')
41
declarations.type_traits_classes.find_noncopyable_vars(cls)
42
+ self.assertTrue(declarations.type_traits_classes.is_noncopyable(cls))
43
44
def test_infinite_recursion_sstream(self):
45
"""
@@ -60,6 +61,7 @@ def test_infinite_recursion_sstream(self):
60
61
test_ns = global_ns.namespace('Test2')
62
cls = test_ns.class_('FileStreamDataStream')
63
64
+ self.assertFalse(declarations.type_traits_classes.is_noncopyable(cls))
65
66
67
def create_suite():
0 commit comments