(self, expected)
| 445 | class TestFuse(TestOp): |
| 446 | |
| 447 | def __assert_history(self, expected): |
| 448 | out = utils.stdout(gl.history()) |
| 449 | cids = list(reversed(re.findall(r'ci (.*) in (\S*)', out, re.UNICODE))) |
| 450 | self.assertItemsEqual( |
| 451 | cids, expected, 'cids is ' + text(cids) + ' exp ' + text(expected)) |
| 452 | |
| 453 | st_out = utils.stdout(gl.status()) |
| 454 | self.assertFalse('fuse' in st_out) |
| 455 | |
| 456 | def __build(self, branch_name, cids=None): |
| 457 | if not cids: |
no test coverage detected