You are here

public function ParserCSVTest::test in Feeds 7.2

Same name and namespace in other branches
  1. 6 tests/parser_csv.test \ParserCSVTest::test()
  2. 7 tests/parser_csv.test \ParserCSVTest::test()

Test method.

File

tests/parser_csv.test, line 32
Tests for ParserCSV library.

Class

ParserCSVTest
Test aggregating a feed as node items.

Code

public function test() {
  drupal_load('module', 'feeds');
  feeds_include_library('ParserCSV.inc', 'ParserCSV');
  $this
    ->_testSimple();
  $this
    ->_testBatching();
  $this
    ->_testEncodingConversion();
  $this
    ->_testEncodingConversionFailure();
}