You are here

public function FeedsTamperUniqueTestCase::test in Feeds Tamper 7

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

File

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

Class

FeedsTamperUniqueTestCase
Tests for unique.inc

Code

public function test() {
  $this
    ->execute(array(
    'a',
    'a',
    'b',
    'c',
  ), array(
    'a',
    'b',
    'c',
  ));
  $this
    ->execute(array(
    1,
    1,
    2,
    3,
    4,
  ), array(
    1,
    2,
    3,
    4,
  ));
}