php-src/ext/gd/tests/gd_info_basic.phpt
Nikita Popov c5401854fc Run tidy
This should fix most of the remaining issues with tabs and spaces
being mixed in tests.
2020-09-18 14:28:32 +02:00

24 lines
311 B
PHP

--TEST--
gd_info()
--SKIPIF--
<?php
if (!function_exists('gd_info')) {
die('skip gd_info() not available');
}
?>
--FILE--
<?php
echo "basic test of gd_info() function\n";
var_dump(gd_info());
echo "\nDone\n";
?>
--EXPECTF--
basic test of gd_info() function
array(%d) {
%a
}
Done