(self)
| 125 | assert super_len(member) == 4 |
| 126 | |
| 127 | def test_super_len_with__len__(self): |
| 128 | foo = [1, 2, 3, 4] |
| 129 | len_foo = super_len(foo) |
| 130 | assert len_foo == 4 |
| 131 | |
| 132 | def test_super_len_with_no__len__(self): |
| 133 | class LenFile: |
nothing calls this directly
no test coverage detected