Files
kalsport.pl/modules/gamification/tests/functional/CallToGamificationServerTest.php
2024-11-05 12:22:50 +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);
}
}