Add TODO about ambiguous queen moves

This commit is contained in:
ekzyis 2024-09-26 07:10:58 +02:00
parent 4a3315eaa0
commit bbcd0b7725
1 changed files with 2 additions and 0 deletions

View File

@ -389,6 +389,8 @@ func TestBoardMoveQueenInvalid(t *testing.T) {
// path blocked by white pawn at d2
assertMoveError(t, b, "Qd3", "no queen found that can move to d3")
// TODO: ambiguous queen moves require pawn promotion
}
func TestBoardMoveKing(t *testing.T) {