|
26 | 26 | raise if actual.abbr.inspect.to_s != "R" |
27 | 27 | raise if actual.abbr.to_s != "R" |
28 | 28 | raise if actual.style != "C" |
| 29 | +raise if actual.king? != false |
29 | 30 | raise if actual.topside? != false |
30 | 31 | raise if actual.bottomside? != true |
31 | 32 | raise if actual.to_s != "C:R" |
|
59 | 60 | raise if actual.abbr.inspect.to_s != "-k" |
60 | 61 | raise if actual.abbr.to_s != "-k" |
61 | 62 | raise if actual.style != "c" |
| 63 | +raise if actual.king? != true |
62 | 64 | raise if actual.topside? != true |
63 | 65 | raise if actual.bottomside? != false |
64 | 66 | raise if actual.to_s != "c:-k" |
|
92 | 94 | raise if actual.abbr.inspect.to_s != "B" |
93 | 95 | raise if actual.abbr.to_s != "B" |
94 | 96 | raise if actual.style != "M" |
| 97 | +raise if actual.king? != false |
95 | 98 | raise if actual.topside? != false |
96 | 99 | raise if actual.bottomside? != true |
97 | 100 | raise if actual.to_s != "M:B" |
|
125 | 128 | raise if actual.abbr.inspect.to_s != "-k" |
126 | 129 | raise if actual.abbr.to_s != "-k" |
127 | 130 | raise if actual.style != "s" |
| 131 | +raise if actual.king? != true |
128 | 132 | raise if actual.topside? != true |
129 | 133 | raise if actual.bottomside? != false |
130 | 134 | raise if actual.to_s != "s:-k" |
|
158 | 162 | raise if actual.abbr.inspect.to_s != "-K" |
159 | 163 | raise if actual.abbr.to_s != "-K" |
160 | 164 | raise if actual.style != "S" |
| 165 | +raise if actual.king? != true |
161 | 166 | raise if actual.topside? != false |
162 | 167 | raise if actual.bottomside? != true |
163 | 168 | raise if actual.to_s != "S:-K" |
|
191 | 196 | raise if actual.abbr.inspect.to_s != "+P" |
192 | 197 | raise if actual.abbr.to_s != "+P" |
193 | 198 | raise if actual.style != "S" |
| 199 | +raise if actual.king? != false |
194 | 200 | raise if actual.topside? != false |
195 | 201 | raise if actual.bottomside? != true |
196 | 202 | raise if actual.to_s != "S:+P" |
|
224 | 230 | raise if actual.abbr.inspect.to_s != "-G" |
225 | 231 | raise if actual.abbr.to_s != "-G" |
226 | 232 | raise if actual.style != "X" |
| 233 | +raise if actual.king? != true |
227 | 234 | raise if actual.topside? != false |
228 | 235 | raise if actual.bottomside? != true |
229 | 236 | raise if actual.to_s != "X:-G" |
|
257 | 264 | raise if actual.abbr.inspect.to_s != "+-G" |
258 | 265 | raise if actual.abbr.to_s != "+-G" |
259 | 266 | raise if actual.style != "X" |
| 267 | +raise if actual.king? != true |
260 | 268 | raise if actual.topside? != false |
261 | 269 | raise if actual.bottomside? != true |
262 | 270 | raise if actual.to_s != "X:+-G" |
|
290 | 298 | raise if actual.abbr.inspect.to_s != "PH" |
291 | 299 | raise if actual.abbr.to_s != "PH" |
292 | 300 | raise if actual.style != "DAI_DAI_SHOGI" |
| 301 | +raise if actual.king? != false |
293 | 302 | raise if actual.topside? != false |
294 | 303 | raise if actual.bottomside? != true |
295 | 304 | raise if actual.to_s != "DAI_DAI_SHOGI:PH" |
|
323 | 332 | raise if actual.abbr.inspect.to_s != "+Z" |
324 | 333 | raise if actual.abbr.to_s != "+Z" |
325 | 334 | raise if actual.style != "FOO" |
| 335 | +raise if actual.king? != false |
326 | 336 | raise if actual.topside? != false |
327 | 337 | raise if actual.bottomside? != true |
328 | 338 | raise if actual.to_s != "FOO:+Z" |
|
0 commit comments