summaryrefslogtreecommitdiff
path: root/features/castling.feature
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2018-08-29 22:49:20 -0700
committerGitHub <noreply@github.com>2018-08-29 22:49:20 -0700
commit67339d896aa65d75272b80134a8128276c8c6a0f (patch)
tree09eb145ffcbaf89d873c89e8346ee8d38a88ebbe /features/castling.feature
parent29dd9bb233e149cae62a2277020074f8fec1eec8 (diff)
parent800dd7677276f9e425c5db37b3e31e56ab1dad32 (diff)
Merge pull request #23 from dickmao/fix-castling-legality
Add tests for castling legality and ics response handling.
Diffstat (limited to 'features/castling.feature')
-rw-r--r--features/castling.feature7
1 files changed, 7 insertions, 0 deletions
diff --git a/features/castling.feature b/features/castling.feature
new file mode 100644
index 0000000..8cbcf02
--- /dev/null
+++ b/features/castling.feature
@@ -0,0 +1,7 @@
+Scenario: e1-b1 is misinterpreted as O-O-O when it should be illegal
+ Given game with fen "rnbqkbnr/pppppppp/8/8/8/8/PPPPPPPP/R3KBNR w KQkq -"
+ Then the move "e1-b1" is illegal
+
+Scenario: e8-b8 is misinterpreted as O-O-O when it should be illegal
+ Given game with fen "r3kbnr/pppppppp/8/8/8/8/PPPPPPPP/RNBQKBNR b KQkq -"
+ Then the move "e8-b8" is illegal