(self)
| 25 | |
| 26 | class TestSingle: |
| 27 | def test_singleton(self): |
| 28 | ftype = finfo(single) |
| 29 | ftype2 = finfo(single) |
| 30 | assert_equal(id(ftype), id(ftype2)) |
| 31 | |
| 32 | class TestDouble: |
| 33 | def test_singleton(self): |
nothing calls this directly
no test coverage detected