ru_php/ext/enchant/tests/broker_set_ordering.phpt

33 lines
648 B
PHP

--TEST--
enchant_broker_set_ordering() function
--CREDITS--
marcosptf - <marcosptf@yahoo.com.br>
--EXTENSIONS--
enchant
--SKIPIF--
<?php
if (!enchant_broker_list_dicts(enchant_broker_init())) {die("skip no dictionary installed on this machine! \n");}
?>
--FILE--
<?php
$broker = enchant_broker_init();
$dicts = enchant_broker_list_dicts($broker);
$comma = ";";
if (is_object($broker)) {
echo("OK\n");
if (enchant_broker_set_ordering($broker,$dicts[0]['lang_tag'],$comma)) {
echo("OK\n");
} else {
echo("enchant failed ==>" . $enchantErr);
}
} else {
echo("init failed\n");
}
echo "OK\n";
?>
--EXPECT--
OK
OK
OK