You are here

public function FeedsTamperDefaultValueTestCase::test in Feeds Tamper 6

Same name and namespace in other branches
  1. 7 tests/feeds_tamper_plugins.test \FeedsTamperDefaultValueTestCase::test()

File

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

Class

FeedsTamperDefaultValueTestCase
Tests for default_value.inc

Code

public function test() {
  $this
    ->execute('asdfasdf', 'HELLO', array(
    'default_value' => 'HELLO',
  ));
  $this
    ->execute(array(
    'asdfasdf',
  ), 'HELLO', array(
    'default_value' => 'HELLO',
  ));
}