From 5e2136d0fd06581bfa57fb631e1a64a60899978b Mon Sep 17 00:00:00 2001 From: Eldad Fux Date: Sun, 25 Oct 2020 08:14:57 +0200 Subject: [PATCH] Updated test --- tests/unit/General/ExtensionsTest.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/unit/General/ExtensionsTest.php b/tests/unit/General/ExtensionsTest.php index 0c2a6bfe66..2a7c9d58e9 100644 --- a/tests/unit/General/ExtensionsTest.php +++ b/tests/unit/General/ExtensionsTest.php @@ -109,4 +109,9 @@ class ExtensionsTest extends TestCase { $this->assertEquals(true, extension_loaded('sockets')); } + + public function testMaxminddb() + { + $this->assertEquals(true, extension_loaded('maxminddb')); + } }