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

test_set_prev() public method

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