public static function ParserCSVTest::getDelimiters in Feeds 7.2
2 calls to ParserCSVTest::getDelimiters()
- ParserCSVTest::_testBatching in tests/
parser_csv.test - Test batching.
- ParserCSVTest::_testSimple in tests/
parser_csv.test - Simple test of parsing functionality.
File
- tests/
parser_csv.test, line 146 - Tests for ParserCSV library.
Class
- ParserCSVTest
- Test aggregating a feed as node items.
Code
public static function getDelimiters() {
return array(
'comma' => ',',
'pipe' => '|',
'semicolon' => ';',
'plus' => '+',
'tab' => "\t",
);
}