Files
taome/modules/gamification/tests/functional/CallToGamificationServerTest.php
2020-10-07 10:37:15 +02: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);
}
}