summaryrefslogtreecommitdiff
path: root/ext/enchant/tests/broker_dict_exists.phpt
blob: 5fe22dc3dda1ae011c74a50623fc5dd37f482e12 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
--TEST--
enchant_broker_dict_exists() function
--CREDITS--
marcosptf - <marcosptf@yahoo.com.br>
--SKIPIF--
<?php
if(!extension_loaded('enchant')) die('skip, enchant not loader');
if (!is_resource(enchant_broker_init())) {die("skip, resource dont load\n");}
?>
--FILE--
<?php
$broker = enchant_broker_init();
$dicts = enchant_broker_list_dicts($broker);

if (enchant_broker_dict_exists($broker, $dicts[0]['lang_tag'])) {
    echo("OK\n");
} else {
    echo("dicts dont exist failed\n");
}
?>
--EXPECT--
OK