()
| 116 | |
| 117 | |
| 118 | def simple_test() -> None: |
| 119 | startPos = Point(0, 0) |
| 120 | hexagon_angles = [ |
| 121 | HexagonAngle.UP, |
| 122 | ] |
| 123 | points = gen_points(hexagon_angles, LED_PER_STRIP, startPos) |
| 124 | print(points) |
| 125 | # assert len(points) == LED_PER_STRIP + 1 |
| 126 | |
| 127 | def two_angle_test() -> None: |
| 128 | startPos = Point(0, 0) |
nothing calls this directly
no test coverage detected