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 4b59ab8 commit e38b9e5Copy full SHA for e38b9e5
tests/pyreverse/test_writer.py
@@ -312,10 +312,10 @@ def test_should_show_node_classes(
312
"""Test class visibility based on their containing module depth.
313
314
Classes are filtered based on their containing module's depth:
315
- - MyClass -> depth 0 (no module)
316
- - pkg.MyClass -> depth 0 (module has no dots)
317
- - pkg.subpkg.MyClass -> depth 1 (module has 1 dot)
318
- - pkg.subpkg.mod.MyClass -> depth 2 (module has 2 dots)
+ - 'MyClass' -> depth 0 (no module)
+ - 'pkg.MyClass' -> depth 0 (module has no dots)
+ - 'pkg.subpkg.MyClass' -> depth 1 (module has 1 dot)
+ - 'pkg.subpkg.mod.MyClass' -> depth 2 (module has 2 dots)
319
"""
320
writer = DiagramWriter(default_config)
321
print("max_depth:", max_depth)
0 commit comments