mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 12:05:37 +00:00
FIXED: CSV Test cases now use platform-correct linebreak characters
This commit is contained in:
parent
5ea2c3dc5a
commit
d54ef36b47
@ -19,7 +19,7 @@ class CSVParserTest extends SapphireTest {
|
||||
|
||||
$this->assertEquals(array(
|
||||
"He's a good guy",
|
||||
"She is awesome.\nSo awesome that she gets multiple rows and \"escaped\" strings in her biography",
|
||||
"She is awesome." . PHP_EOL . "So awesome that she gets multiple rows and \"escaped\" strings in her biography",
|
||||
"Pretty old, with an escaped comma",
|
||||
"Unicode FTW"), $biographies);
|
||||
$this->assertEquals(array("31/01/1988","31/01/1982","31/01/1882","31/06/1982"), $birthdays);
|
||||
@ -49,7 +49,7 @@ class CSVParserTest extends SapphireTest {
|
||||
$this->assertEquals(array('John','Jane','Jamie','Järg'), $firstNames);
|
||||
$this->assertEquals(array(
|
||||
"He's a good guy",
|
||||
"She is awesome.\nSo awesome that she gets multiple rows and \"escaped\" strings in her biography",
|
||||
"She is awesome." . PHP_EOL . "So awesome that she gets multiple rows and \"escaped\" strings in her biography",
|
||||
"Pretty old, with an escaped comma",
|
||||
"Unicode FTW"), $biographies);
|
||||
$this->assertEquals(array("31/01/1988","31/01/1982","31/01/1882","31/06/1982"), $birthdays);
|
||||
@ -77,7 +77,7 @@ class CSVParserTest extends SapphireTest {
|
||||
$this->assertEquals(array(
|
||||
'Biography',
|
||||
"He's a good guy",
|
||||
"She is awesome.\nSo awesome that she gets multiple rows and \"escaped\" strings in her biography",
|
||||
"She is awesome." . PHP_EOL . "So awesome that she gets multiple rows and \"escaped\" strings in her biography",
|
||||
"Pretty old, with an escaped comma",
|
||||
"Unicode FTW"), $biographies);
|
||||
$this->assertEquals(array("Birthday","31/01/1988","31/01/1982","31/01/1882","31/06/1982"), $birthdays);
|
||||
|
Loading…
x
Reference in New Issue
Block a user