1--TEST--
2enchant_dict_quick_check() 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$word = "aspell";
17
18if (is_object($broker)) {
19    echo("OK\n");
20    $requestDict = enchant_broker_request_dict($broker, $dicts[0]['lang_tag']);
21
22    if ($requestDict) {
23        enchant_dict_quick_check($requestDict,$word,$sugs);
24
25        if (is_array($sugs)) {
26            echo("OK\n");
27        } else {
28            echo("dict quick check failed\n");
29        }
30    } else {
31        echo("broker request dict failed\n");
32    }
33} else {
34    echo("broker is not a resource; failed;\n");
35}
36?>
37--EXPECT--
38OK
39OK
40