You are here

static function ParserCSVTest::getDelimiters in Feeds 8.2

2 calls to ParserCSVTest::getDelimiters()
ParserCSVTest::_testBatching in lib/Drupal/feeds/Tests/ParserCSVTest.php
Test batching.
ParserCSVTest::_testSimple in lib/Drupal/feeds/Tests/ParserCSVTest.php
Simple test of parsing functionality.

File

lib/Drupal/feeds/Tests/ParserCSVTest.php, line 98
Tests for ParserCSV library.

Class

ParserCSVTest
Test aggregating a feed as node items.

Namespace

Drupal\feeds\Tests

Code

static function getDelimiters() {
  return array(
    'comma' => ',',
    'pipe' => '|',
    'semicolon' => ';',
    'plus' => '+',
    'tab' => "\t",
  );
}