1--TEST--
2enchant_dict_describe() function
3--CREDITS--
4marcosptf - <marcosptf@yahoo.com.br>
5--EXTENSIONS--
6enchant
7--SKIPIF--
8<?php
9if (!is_object(enchant_broker_init())) {die("skip, resource dont load\n");}
10if (!is_array(enchant_broker_list_dicts(enchant_broker_init()))) {die("skip, no dictionary installed on this machine! \n");}
11?>
12--FILE--
13<?php
14$broker = enchant_broker_init();
15$dicts = enchant_broker_list_dicts($broker);
16
17if (is_object($broker)) {
18    echo("OK\n");
19    $requestDict = enchant_broker_request_dict($broker, $dicts[0]['lang_tag']);
20
21    if ($requestDict) {
22        echo("OK\n");
23        $dictDescribe = enchant_dict_describe($requestDict);
24
25        if (is_array($dictDescribe)) {
26            echo("OK\n");
27
28        } else {
29           echo("broker request dict failed\n");
30        }
31    } else {
32        echo("broker request dict failed\n");
33    }
34} else {
35    echo("broker is not a resource; failed;\n");
36}
37?>
38--EXPECT--
39OK
40OK
41OK
42