Files
bio-concept-pharma/web/modules/gamification/tests/functional/CallToGamificationServerTest.php
2019-11-17 19:14:07 +01:00

15 lines
392 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);
self::assertContains('Content-Encoding: gzip', $response);
}
}