| Conditions | 3 |
| Total Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | import unittest |
||
| 25 | def _get_class_name_representation(self, steps): |
||
| 26 | steps_representation = [] |
||
| 27 | for step in steps: |
||
| 28 | step_representation = [] |
||
| 29 | for action in step: |
||
| 30 | step_representation.append(action.__name__) |
||
| 31 | steps_representation.append(sorted(step_representation)) |
||
| 32 | return steps_representation |