Skip to content

Commit 5b6cb26

Browse files
committed
Add missing fixtures
1 parent a6a85b9 commit 5b6cb26

7 files changed

+3
-1
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ clover.xml
44
.idea/
55

66
*.csv
7+
!test/**/*.csv
78
*.zip
89
/composer.lock
910
*.cache

test/Integration/CsvIntegrationTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public function test_csv( string $encoding ) : void {
2323
$sheet->addRow([ 'test one', '日本語', 'test two' ]);
2424
$export->export($temp);
2525

26-
$file = __DIR__ . '/data/basic-csv-' . $encoding . '.csv';
26+
$file = __DIR__ . '/fixtures/basic-csv-' . $encoding . '.csv';
2727

2828
$this->assertFileEquals($file, $tmpFile);
2929

54 Bytes
Binary file not shown.
54 Bytes
Binary file not shown.
108 Bytes
Binary file not shown.
108 Bytes
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
"test one",日本語,"test two"

0 commit comments

Comments
 (0)