diff options
Diffstat (limited to 'tests/chessarbiter.cpp')
| -rw-r--r-- | tests/chessarbiter.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/chessarbiter.cpp b/tests/chessarbiter.cpp index 96b5f3b..2b6bdec 100644 --- a/tests/chessarbiter.cpp +++ b/tests/chessarbiter.cpp @@ -496,6 +496,10 @@ TEST_CASE("Specific bugs found on a game", "[BugFixes]") { CHECK(p == 'N'); p=a.ParseSANPromotion("d8=B+"); CHECK(p == 'B'); - p=a.ParseSANPromotion("d8=R"); + p=a.ParseSANPromotion("h1=R"); + CHECK(p == 'R'); + p=a.ParseSANPromotion("a1=R"); + CHECK(p == 'R'); + p=a.ParseSANPromotion("c1=R"); CHECK(p == 'R'); }
\ No newline at end of file |
