Artesaos\SEOTools\Tests\SEOMetaTest::test_set_canonical PHP Method

test_set_canonical() public method

public test_set_canonical ( )
    public function test_set_canonical()
    {
        $fullHeader = "<title>It's Over 9000!</title>";
        $fullHeader .= "<meta name=\"description\" content=\"For those who helped create the Genki Dama\">";
        $fullHeader .= "<link rel=\"canonical\" href=\"http://domain.com\"/>";
        $canonical = 'http://domain.com';
        $this->seoMeta->setCanonical($canonical);
        $this->setRightAssertion($fullHeader);
        $this->assertEquals($canonical, $this->seoMeta->getCanonical());
    }