You are here

public function FeedsTamperArrayFilterTestCase::test in Feeds Tamper 7

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

File

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

Class

FeedsTamperArrayFilterTestCase
Tests for array_filter.inc

Code

public function test() {
  $this
    ->executeFilter(array(
    'asdf',
    0,
    FALSE,
    '',
    1234,
  ), array(
    'asdf',
    1234,
  ));
}