This is `foobar` property.
(self)
| 296 | class A(object): |
| 297 | @property |
| 298 | def foobar(self): |
| 299 | """This is `foobar` property.""" |
| 300 | pass |
| 301 | |
| 302 | ip.user_ns['a_obj'] = A() |
| 303 | nt.assert_equal( |
nothing calls this directly
no outgoing calls
no test coverage detected