(self)
| 366 | |
| 367 | class TestBlockManager: |
| 368 | def test_attrs(self): |
| 369 | mgr = create_mgr("a,b,c: f8-1; d,e,f: f8-2") |
| 370 | assert mgr.nblocks == 2 |
| 371 | assert len(mgr) == 6 |
| 372 | |
| 373 | def test_duplicate_ref_loc_failure(self): |
| 374 | tmp_mgr = create_mgr("a:bool; a: f8") |
nothing calls this directly
no test coverage detected