Update test suite
All checks were successful
Python tests (make) / test (push) Successful in 10s

Put all ffi code into its own module for clarity.
This commit is contained in:
2025-08-17 17:23:42 -04:00
parent 5a25eba8f6
commit 5b4dc74681
5 changed files with 242 additions and 134 deletions

View File

@@ -1,8 +1,8 @@
from test.base import ChessLibTestBase
from test.base import bb_from
from test.base import draw_bb
from test.base import sq
from test.base import BLACK, WHITE
from test.chess_ffi import bb_from
from test.chess_ffi import draw_bb
from test.chess_ffi import sq
from test.chess_ffi import BLACK, WHITE
class KnightFixedCases(ChessLibTestBase):