You are here

public function FeedsTamperAbsoluteURLTestCase::executeAbs in Feeds Tamper 6

Same name and namespace in other branches
  1. 7 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 132
Unit tests for feeds tamper plugins.

Class

FeedsTamperAbsoluteURLTestCase
Tests for absolute_url.inc

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