From: Sven Schöling Date: Mon, 7 Mar 2011 11:11:44 +0000 (+0100) Subject: Tests brauchen mittlerweile fix Text::CSV_XS X-Git-Tag: release-2.7.0beta1~396^2~6 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=0fb93bcfea648e356bc5e50f7013f6b91db187ef;p=kivitendo-erp.git Tests brauchen mittlerweile fix Text::CSV_XS --- diff --git a/t/helper/csv.t b/t/helper/csv.t index e4a625430..434626f8f 100644 --- 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';