Sophie

Sophie

distrib > Mandriva > 2010.0 > i586 > media > contrib-release > by-pkgid > 6496e204f77658ff2108478d2951b08a > files > 89

php-pear-Games_Chess-1.0.1-5mdv2010.0.noarch.rpm

--TEST--
Games_Chess->_getKingSquares() a8
--SKIPIF--
--FILE--
<?php
require_once dirname(__FILE__) . '/setup.php.inc';
$ret = $board->_getKingSquares('a8');
$phpunit->assertEquals(array('b8', 'b7', 'a7'),
    $ret, 'Incorrect king squares');
echo 'tests done';
?>
--EXPECT--
tests done