public function FeedsTamperUniqueTestCase::test in Feeds Tamper 6
Same name and namespace in other branches
- 7 tests/feeds_tamper_plugins.test \FeedsTamperUniqueTestCase::test()
File
- tests/feeds_tamper_plugins.test, line 985 
- 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,
  ));
}