1--TEST--
2enchant_dict_get_error() function
3--CREDITS--
4marcosptf - <marcosptf@yahoo.com.br>
5--SKIPIF--
6<?php
7if(!extension_loaded('enchant')) die('skip, enchant not loader');
8if (!is_resource(enchant_broker_init())) {die("skip, resource dont load\n");}
9if (!is_array(enchant_broker_list_dicts(enchant_broker_init()))) {die("skip, dont has dictionary install in this machine! \n");}
10?>
11--FILE--
12<?php
13$broker = enchant_broker_init();
14$dicts = enchant_broker_list_dicts($broker);
15
16if (is_resource($broker)) {
17    echo("OK\n");
18    $requestDict = enchant_broker_request_dict($broker, $dicts[0]['lang_tag']);
19
20    if ($requestDict) {
21        var_dump(enchant_dict_get_error($requestDict));
22    } else {
23        echo("broker request dict failed\n");
24    }
25} else {
26    echo("init failed\n");
27}
28echo("OK\n");
29?>
30--EXPECT--
31OK
32bool(false)
33OK
34