| Total Complexity | 1 |
| Total Lines | 11 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | # coding: utf8 |
||
| 25 | class GanttChartTestCase(ActionTreeTestCase): |
||
| 26 | def test(self): |
||
| 27 | a = self._action("a") |
||
| 28 | b = self._action("b") |
||
| 29 | c = self._action("c") |
||
| 30 | c.add_dependency(a) |
||
| 31 | c.add_dependency(b) |
||
| 32 | |||
| 33 | chart = GanttChart(execute(c, cpu_cores=2)) |
||
| 34 | ax = unittest.mock.Mock() |
||
| 35 | chart.plot_on_mpl_axes(ax) |
||
| 36 |