Files
drmaterac.pl/modules/gamification/tests/functional/CallToGamificationServerTest.php
2025-01-06 20:47:25 +01:00

15 lines
393 B
PHP

<?php
use PHPUnit\Framework\TestCase;
class CallToGamificationServerTest extends TestCase
{
public function testContentIsGzipped()
{
$workingCallUrl = 'https://gamification.prestashop.com/json/data_EN_IDR_ID.json';
$response = GamificationTools::retrieveJsonApiFile($workingCallUrl, true);
$this->assertContains('Content-Encoding: gzip', $response);
}
}