mirror of
https://github.com/parsecsv/parsecsv-for-php.git
synced 2026-02-19 08:36:39 +00:00
Bugfix: $csv->parseFile now sets $this->data
This adds consistency because $csv->parse() does the same. Fix #200 Fix #201
This commit is contained in:
@@ -331,4 +331,10 @@ class ParseTest extends TestCase {
|
||||
self::assertFalse($this->csv->parseFile(''));
|
||||
self::assertFalse($this->csv->parseFile(null));
|
||||
}
|
||||
|
||||
public function testParseFile() {
|
||||
$data = $this->csv->parseFile(__DIR__ . '/fixtures/auto-double-enclosure.csv');
|
||||
self::assertCount(2, $data);
|
||||
self::assertEquals($data, $this->csv->data);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user