From 93e47c67c7301ef2a86b23d18d0aa4ac39b3ec7f Mon Sep 17 00:00:00 2001 From: Christian Schneider Date: Fri, 12 Feb 2021 12:59:57 +0100 Subject: Fix cols() ignoring some columns, was an exception in PHP 8 --- test/it_pipe.t | 2 ++ 1 file changed, 2 insertions(+) (limited to 'test') diff --git a/test/it_pipe.t b/test/it_pipe.t index 16e2c29..a3cebd6 100755 --- a/test/it_pipe.t +++ b/test/it_pipe.t @@ -10,6 +10,8 @@ is(json_encode((new it_pipe(['data' => ["a\tb", "1\t2"]]))->csv("c,d")), '[{"c": is(json_encode((new it_pipe(['data' => ["a\tb", "1\t2"]]))->csv(['forceschema' => "c,d"])), '[{"c":"1","d":"2"}]'); is(json_encode((new it_pipe(['data' => ["a b\tb", "1\t2"]]))->csv(['fixcolnames' => true])), '[{"a_b":"1","b":"2"}]'); +is(iterator_to_array((new it_pipe(['data' => ["a b\tb", "1\t2"]]))->cols('c')), [(object)['c' => 'a b'], (object)['c' => '1']], "cols() ignoring some columns"); + # askey() is(json_encode((new it_pipe(['data' => "a\nb\n"]))->askey()), '{"a":true,"b":true}'); -- cgit v1.2.3