projects
/
kivitendo-erp.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e5e35e6
)
Tests brauchen mittlerweile fix Text::CSV_XS
author
Sven Schöling
<s.schoeling@linet-services.de>
Mon, 7 Mar 2011 11:11:44 +0000
(12:11 +0100)
committer
Moritz Bunkus
<m.bunkus@linet-services.de>
Thu, 16 Jun 2011 07:30:17 +0000
(09:30 +0200)
t/helper/csv.t
patch
|
blob
|
history
diff --git
a/t/helper/csv.t
b/t/helper/csv.t
index
e4a6254
..
434626f
100644
(file)
--- a/
t/helper/csv.t
+++ b/
t/helper/csv.t
@@
-11,7
+11,7
@@
$csv = SL::Helper::Csv->new(
header => [ 'description' ],
);
-isa_ok $csv->_csv, 'Text::CSV';
+isa_ok $csv->_csv, 'Text::CSV
_XS
';
isa_ok $csv->_io, 'IO::File';
isa_ok $csv->parse, 'SL::Helper::Csv', 'parsing returns self';
is_deeply $csv->get_data, [ { description => 'Kaffee' } ], 'simple case works';