rbaltrusch / chess_ng

Full chess engine including chess AI
MIT License
2 stars 2 forks source link

Add tests for knight movement #3

Closed rbaltrusch closed 2 years ago

rbaltrusch commented 2 years ago

Currently there are no tests for the way the knight should move and interact with the board and other pieces on it. This should be fixed with a few unit tests similar to the tests in tests/unit/test_bishop.py.

rbaltrusch commented 2 years ago

Also see issue #1, which will implement the knight movement.

rbaltrusch commented 2 years ago

Fixed with commit e0eec29, which added the knight move functionality and its unit tests.