summaryrefslogtreecommitdiff
path: root/ext/enchant/tests/broker_list_dicts.phpt
blob: 47dd31884123e359c7ac1a30402b92375a8b2cf4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
--TEST--
enchant_broker_list_dicts() function
--CREDITS--
marcosptf - <marcosptf@yahoo.com.br>
--SKIPIF--
<?php 
if(!extension_loaded('enchant')) die('skip, enchant not loader');
?>
--FILE--
<?php
$broker = enchant_broker_init();
if (is_resource($broker)) {
    echo("OK\n");
    $brokerListDicts = enchant_broker_list_dicts($broker);
    
    if (is_array($brokerListDicts)) {
        echo("OK\n");        
    } else {
        exit("broker list dicts failed\n");        
    }    
} else {
    exit("init failed\n");
}

?>
--EXPECT--
OK
OK