(self)
| 67 | class test_FastLocalStack: |
| 68 | |
| 69 | def test_stack(self): |
| 70 | x = _FastLocalStack() |
| 71 | x.push([&class="cm">#x27;foo']) |
| 72 | x.push([&class="cm">#x27;bar']) |
| 73 | assert x.top == [&class="cm">#x27;bar'] |
| 74 | assert len(x) == 2 |
| 75 | x.pop() |
| 76 | assert x.top == [&class="cm">#x27;foo'] |
| 77 | x.pop() |
| 78 | assert x.top is None |
| 79 | |
| 80 | |
| 81 | class test_LocalManager: |
nothing calls this directly
no test coverage detected