summaryrefslogtreecommitdiff
path: root/ext/enchant/tests
diff options
context:
space:
mode:
authormarcosptf <marcosptf@yahoo.com.br>2015-08-07 11:35:35 -0300
committermarcosptf <marcosptf@yahoo.com.br>2015-08-07 11:35:35 -0300
commit90f9516cd923c14aab88b963c737e1cd288d6b48 (patch)
tree82a989c101d52ec03e1cdb6d0ddbb013a18d4f0f /ext/enchant/tests
parent86c0df077a7deff0daf12aba254d15e999e03bc6 (diff)
downloadphp-git-90f9516cd923c14aab88b963c737e1cd288d6b48.tar.gz
Create dict_describe.phpt
Diffstat (limited to 'ext/enchant/tests')
-rw-r--r--ext/enchant/tests/dict_describe.phpt41
1 files changed, 41 insertions, 0 deletions
diff --git a/ext/enchant/tests/dict_describe.phpt b/ext/enchant/tests/dict_describe.phpt
new file mode 100644
index 0000000000..9498cb4081
--- /dev/null
+++ b/ext/enchant/tests/dict_describe.phpt
@@ -0,0 +1,41 @@
+--TEST--
+enchant_dict_describe() function
+--CREDITS--
+marcosptf - <marcosptf@yahoo.com.br>
+--SKIPIF--
+<?php
+if(!extension_loaded('enchant')) die('skip, enchant not loader');
+?>
+--FILE--
+<?php
+$broker = enchant_broker_init();
+$lang = "en_EN";
+
+if (is_resource($broker)) {
+ echo("OK\n");
+ $requestDict = enchant_broker_request_dict($broker,$lang);
+
+ if ($requestDict) {
+ var_dump(enchant_dict_describe($requestDict));
+
+ } else {
+ echo("broker request dict failed\n");
+
+ }
+
+} else {
+ echo("broker is not a resource; failed;\n");
+}
+?>
+--EXPECTF--
+OK
+array(%d) {
+ ["lang"]=>
+ string(%d) "en"
+ ["name"]=>
+ string(%d) "myspell"
+ ["desc"]=>
+ string(%d) "Myspell Provider"
+ ["file"]=>
+ string(%d) "/usr/lib64/enchant/libenchant_myspell.so"
+}