()
| 125 | # assert len(points) == LED_PER_STRIP + 1 |
| 126 | |
| 127 | def two_angle_test() -> None: |
| 128 | startPos = Point(0, 0) |
| 129 | hexagon_angles = [ |
| 130 | HexagonAngle.UP, |
| 131 | HexagonAngle.UP, |
| 132 | ] |
| 133 | points = gen_points(hexagon_angles, LED_PER_STRIP, startPos) |
| 134 | print(points) |
| 135 | # assert len(points) == LED_PER_STRIP * 2, f"Expected {LED_PER_STRIP * 2} points, got {len(points)} points" |
| 136 | |
| 137 | |
| 138 |
nothing calls this directly
no test coverage detected