public function FeedsTamperAbsoluteURLTestCase::executeAbs in Feeds Tamper 6
Same name and namespace in other branches
- 7 tests/feeds_tamper_plugins.test \FeedsTamperAbsoluteURLTestCase::executeAbs()
1 call to FeedsTamperAbsoluteURLTestCase::executeAbs()
File
- tests/
feeds_tamper_plugins.test, line 132 - Unit tests for feeds tamper plugins.
Class
Code
public function executeAbs($link, $html_in, $html_out) {
$source = $this
->createSource();
$source->batch->link = $link;
$this
->callback($source, NULL, NULL, $html_in, array());
$this
->assertEqual($html_in, $html_out);
}