AwsModule\Tests\View\Helper\CloudFrontLinkTest::testCanTrimCloudFrontPartInDomain PHP Méthode

testCanTrimCloudFrontPartInDomain() public méthode

    public function testCanTrimCloudFrontPartInDomain()
    {
        $link = $this->viewHelper->__invoke('my-object', '123abc.cloudfront.net');
        $this->assertEquals('https://123abc.cloudfront.net/my-object', $link);
        $link = $this->viewHelper->__invoke('my-object', '123abc.cloudfront.net/');
        $this->assertEquals('https://123abc.cloudfront.net/my-object', $link);
    }