You are here

public function FeedsTamperCountryToCodeTestCase::test in Feeds Tamper 7

File

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

Class

FeedsTamperCountryToCodeTestCase
Tests for country_to_code.inc

Code

public function test() {
  $this
    ->execute('Argentina', 'AR');

  // Test that lowercasing and trimming works.
  $this
    ->execute('antigua and barbuda ', 'AG');
}