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