diff --git a/test.php b/test.php
index 73a4a0d8..6d6a9367 100644
--- a/test.php
+++ b/test.php
@@ -27,6 +27,19 @@
$todo = Array();
$body = '
';
+ $extensions = Array('mysql', 'gd');
+
+ // Extensions
+ title('Extensions');
+ foreach($extensions as &$ext) {
+ if(extension_loaded($ext)) {
+ $body .= check($ext, 'ok');
+ } else {
+ $body .= check($ext, 'error');
+ $todo[] = 'Install module "' . $ext . '"';
+ }
+ }
+
// Database
title('Database');