You are here

public function FeedsTamperAbsoluteURLTestCase::executeAbs in Feeds Tamper 7

Same name and namespace in other branches
  1. 6 tests/feeds_tamper_plugins.test \FeedsTamperAbsoluteURLTestCase::executeAbs()
1 call to FeedsTamperAbsoluteURLTestCase::executeAbs()
FeedsTamperAbsoluteURLTestCase::test in tests/feeds_tamper_plugins.test

File

tests/feeds_tamper_plugins.test, line 80
Unit tests for feeds tamper plugins.

Class

FeedsTamperAbsoluteURLTestCase
Tests for absolute_url.inc

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);
}