?? GreyFile — Mystic File Browser

Current path: home/webdevt/prestashop17/modules/gamification/tests/functional/



?? Go up: /home/webdevt/prestashop17/modules/gamification/tests

?? Viewing: CallToGamificationServerTest.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);
    }
}


??

??