Suin\RSSWriter\ChannelTest::testPubsubhubbub PHP Метод

testPubsubhubbub() публичный Метод

public testPubsubhubbub ( )
    public function testPubsubhubbub()
    {
        $channel = new Channel();
        $channel->pubsubhubbub('http://example.com/feed.xml', 'http://pubsubhubbub.appspot.com');
        $xml = $channel->asXML()->asXML();
        $this->assertContains('<atom:link rel="self" href="http://example.com/feed.xml" type="application/rss+xml"/>', $xml);
        $this->assertContains('<atom:link rel="hub" href="http://pubsubhubbub.appspot.com"/>', $xml);
    }